From f5a32c5332b872eff6609efda8716ae7436f6f0e Mon Sep 17 00:00:00 2001 From: Tsanie Lily Date: Mon, 24 Apr 2023 15:08:24 +0800 Subject: [PATCH] sync --- lib/app/communications/customer.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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}`; } } }