Skip to content

Commit

Permalink
Split up composed property name when checking isMultiple()
Browse files Browse the repository at this point in the history
Original fix by @j-maas.

Signed-off-by: Richard Steinmetz <[email protected]>
  • Loading branch information
j-maas authored and st3iny committed Oct 16, 2023
1 parent bb749ca commit 99599f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/ContactDetails/ContactDetailsProperty.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
},

/**
Expand Down

0 comments on commit 99599f2

Please sign in to comment.