Skip to content

Commit

Permalink
Merge pull request #3660 from nextcloud/backport/3644/stable5.4
Browse files Browse the repository at this point in the history
[stable5.4] Fix properties not being displayed (needs testing)
  • Loading branch information
st3iny authored Oct 16, 2023
2 parents bb749ca + 99599f2 commit 6d8494d
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 6d8494d

Please sign in to comment.