diff --git a/lib/app/communications/customer.js b/lib/app/communications/customer.js index c3912b7..f6f9da8 100644 --- a/lib/app/communications/customer.js +++ b/lib/app/communications/customer.js @@ -636,7 +636,7 @@ class CustomerCommunication { iconCol, nameCol, { key: 'Email', width: 180 }, - { key: 'MobilePhone', width: 130 }, + { key: 'MobilePhoneDisplayText', width: 130 }, createEditCol(this), { key: 'delete', @@ -721,7 +721,7 @@ class CustomerCommunication { iconCol, nameCol, { key: 'Email', width: 180 }, - { key: 'MobilePhone', width: 130 }, + { key: 'MobilePhoneDisplayText', width: 130 }, createEditCol(this), { key: 'delete', @@ -874,7 +874,7 @@ class CustomerCommunication { }, { key: 'Name', width: 160 }, { key: 'Email', width: 180 }, - { key: 'MobilePhone', width: 130 }, + { key: 'MobilePhoneDisplayText', width: 130 }, { key: 'edit', ...buttonCol, @@ -1053,13 +1053,13 @@ class CustomerCommunication { contacts.find(c => c.Email === oriph) : contacts.find(c => c.MobilePhone === oriph); if (c != null) { - cname = `${email ? c.Email : c.MobilePhone} - ${c.Name}`; + cname = `${email ? c.Email : c.MobilePhoneDisplayText} - ${c.Name}`; } else if (followers?.length > 0) { c = email ? followers.find(f => f.Email === oriph) : followers.find(f => f.MobilePhone === oriph); if (c != null) { - cname = `${email ? c.Email : c.MobilePhone} - ${c.Name}`; + cname = `${email ? c.Email : c.MobilePhoneDisplayText} - ${c.Name}`; } } }