diff --git a/src/components/ContactsList/ContactsListItem.vue b/src/components/ContactsList/ContactsListItem.vue index d09a3fe9f..e83678d76 100644 --- a/src/components/ContactsList/ContactsListItem.vue +++ b/src/components/ContactsList/ContactsListItem.vue @@ -79,7 +79,7 @@ export default { return window.btoa(this.source.key).slice(0, -2) }, getTel() { - return this.source.properties.find(property => property.name === 'tel').getFirstValue() + return this.source.properties.find(property => property.name === 'tel')?.getFirstValue() }, },