summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2023-10-16 13:02:12 +0200
committerGitHub <noreply@github.com>2023-10-16 13:02:12 +0200
commit6d8494d61e328f117c466473a51992d263bb50b4 (patch)
tree36f3e0e3d119fedde8b186a25fb12c3f1ef632ca
parentbb749ca8abf9a228ad52b66c985bb6bde80c616c (diff)
parent99599f2f52b1738100547de650efc29474a895bd (diff)
Merge pull request #3660 from nextcloud/backport/3644/stable5.4
[stable5.4] 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
},
/**