From 69dc5df6ec51f6f7f6737c61d9c4c1e7757a2b96 Mon Sep 17 00:00:00 2001 From: Li Jun <buli@deloitte.com.cn> Date: 星期四, 17 三月 2022 21:05:08 +0800 Subject: [PATCH] PIPLFixBugs0317V1 --- force-app/main/default/pages/SearchContactPage.page | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/force-app/main/default/pages/SearchContactPage.page b/force-app/main/default/pages/SearchContactPage.page index b88431b..67cb3b9 100644 --- a/force-app/main/default/pages/SearchContactPage.page +++ b/force-app/main/default/pages/SearchContactPage.page @@ -109,6 +109,9 @@ for (let j = 0; j < cols.length; j++) { let td = document.createElement('TD'); td.width = '75'; + if (!contactsInfo.hasOwnProperty(contactInfoTemp.AWSDataId)) { + continue; + } if(j == 0){ td.id = contactsInfo[contactInfoTemp.AWSDataId].Id; } -- Gitblit v1.9.1