summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2023-10-16 10:37:12 +0200
committerGitHub <noreply@github.com>2023-10-16 10:37:12 +0200
commitc40864d80cbe79bfdfdf075783215053a755dd33 (patch)
treea866705737c7fe22218939bc66efc25f436a6410
parenta0769b7cf03886131ee42f35807e9d1bd8a6303d (diff)
parent00de88b6972701c1cf1bd2c21452c407b85bb155 (diff)
Merge pull request #3644 from j-maas/fix-missing-properties
Fix properties not being displayed (needs testing)
-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
},
/**