From 99599f2f52b1738100547de650efc29474a895bd Mon Sep 17 00:00:00 2001 From: Johannes Maas Date: Tue, 3 Oct 2023 20:16:49 +0200 Subject: [PATCH] Split up composed property name when checking isMultiple() Original fix by @j-maas. Signed-off-by: Richard Steinmetz --- src/components/ContactDetails/ContactDetailsProperty.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/ContactDetails/ContactDetailsProperty.vue b/src/components/ContactDetails/ContactDetailsProperty.vue index 552629cf3..254911e23 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 }, /**