summaryrefslogtreecommitdiffstats
path: root/src/components/Properties
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Properties')
-rw-r--r--src/components/Properties/PropertyMultipleText.vue7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/Properties/PropertyMultipleText.vue b/src/components/Properties/PropertyMultipleText.vue
index 1408e3ff..68f7be9d 100644
--- a/src/components/Properties/PropertyMultipleText.vue
+++ b/src/components/Properties/PropertyMultipleText.vue
@@ -38,9 +38,10 @@
{{ selectType.name }}
</div>
- <!-- no options, empty space -->
- <div v-else class="property__label">
- {{ propModel.readableName }}
+ <!-- no options, and showing the first input of an unstructured value?
+ then let's put an empty space (or the name again if no title is present) -->
+ <div v-else-if="!property.isStructuredValue" class="property__label">
+ {{ isFirstProperty ? '' : propModel.readableName }}
</div>
<!-- show the first input if not -->