summaryrefslogtreecommitdiffstats
path: root/src/components/Properties/PropertyMultipleText.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Properties/PropertyMultipleText.vue')
-rw-r--r--src/components/Properties/PropertyMultipleText.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Properties/PropertyMultipleText.vue b/src/components/Properties/PropertyMultipleText.vue
index 8294b7b1..48d65bf8 100644
--- a/src/components/Properties/PropertyMultipleText.vue
+++ b/src/components/Properties/PropertyMultipleText.vue
@@ -101,7 +101,7 @@ export default {
gridLength() {
let hasTitle = this.isFirstProperty && this.propModel.icon ? 1 : 0
let isLast = this.isLastProperty
- let hasValueNames = this.propModel.readableValues ? 1 : 0
+ let hasValueNames = this.propModel.options || this.selectType || !this.property.isStructuredValue ? 1 : 0
let length = this.propModel.displayOrder ? this.propModel.displayOrder.length : this.value.length
return hasValueNames + hasTitle + length + isLast
},