summaryrefslogtreecommitdiffstats
path: root/src/components/ContactDetails/ContactDetailsProperty.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ContactDetails/ContactDetailsProperty.vue')
-rw-r--r--src/components/ContactDetails/ContactDetailsProperty.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/ContactDetails/ContactDetailsProperty.vue b/src/components/ContactDetails/ContactDetailsProperty.vue
index 552629cf..254911e2 100644
--- a/src/components/ContactDetails/ContactDetailsProperty.vue
+++ b/src/components/ContactDetails/ContactDetailsProperty.vue
@@ -133,7 +133,8 @@ export default {
* @return {boolean}
*/
isMultiple() {
- return this.properties[this.property.name].multiple
+ // Make sure we have some model for the property and check for ITEM.PROP custom label format
+ return this.propModel.multiple
},
/**