diff --git a/src/components/pages/Conversations/CscCallItem.vue b/src/components/pages/Conversations/CscCallItem.vue index 6aba722d..dc9ab1d5 100644 --- a/src/components/pages/Conversations/CscCallItem.vue +++ b/src/components/pages/Conversations/CscCallItem.vue @@ -134,9 +134,9 @@ export default { computed: { number () { if (this.call.direction === 'out') { - return this.call.callee + return this.call.callee_phonebook_name || this.call.callee } - return this.call.caller + return this.call.caller_phonebook_name || this.call.caller }, totalCustomerCostRounded () { const formatter = new Intl.NumberFormat('en-US', { diff --git a/src/components/pages/Conversations/CscFaxItem.vue b/src/components/pages/Conversations/CscFaxItem.vue index bc22c53d..5d0d7ab0 100644 --- a/src/components/pages/Conversations/CscFaxItem.vue +++ b/src/components/pages/Conversations/CscFaxItem.vue @@ -97,9 +97,9 @@ export default { }, number () { if (this.fax.direction === 'out') { - return this.fax.callee + return this.fax.callee_phonebook_name || this.fax.callee } - return this.fax.caller + return this.fax.caller_phonebook_name || this.fax.caller } }, methods: { diff --git a/src/components/pages/Conversations/CscVoiceMailItem.vue b/src/components/pages/Conversations/CscVoiceMailItem.vue index c0d01580..01485c5f 100644 --- a/src/components/pages/Conversations/CscVoiceMailItem.vue +++ b/src/components/pages/Conversations/CscVoiceMailItem.vue @@ -15,7 +15,7 @@ > {{ $t('Voicemail') }} {{ direction }} - {{ $filters.destinationFormat(voiceMail.caller) }} + {{ $filters.destinationFormat(voicemailCaller) }}