TT#140451 Issue - SendFax - If failed fax is rendered in Conversations the destination number is supposed to be the receiver and not the sender

Change-Id: Ie5e0e68b930bebad8248737a3b49a1015d3875c4
mr10.1.1
Hugo Zigha 4 years ago committed by Hugo Zigha
parent aa50e1e1fb
commit 1d0d89ca4a

@ -15,7 +15,7 @@
> >
{{ $t('Fax') }} {{ $t('Fax') }}
{{ direction }} {{ direction }}
{{ fax.caller | numberFormat }} {{ number | numberFormat }}
</q-item-label> </q-item-label>
<q-item-label <q-item-label
caption caption
@ -90,6 +90,13 @@ export default {
} else { } else {
return 'from' return 'from'
} }
},
number () {
if (this.fax.direction === 'out') {
return this.fax.callee
} else {
return this.fax.caller
}
} }
}, },
methods: { methods: {

Loading…
Cancel
Save