From 569199021f6e6550369ea38b0d074ea451221e07 Mon Sep 17 00:00:00 2001 From: Pinaki Bhattacharjee Date: Wed, 3 Jul 2024 19:06:09 +0530 Subject: [PATCH 1/3] Update EntitySidebar.tsx --- .../entity/shared/containers/profile/sidebar/EntitySidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datahub-web-react/src/app/entity/shared/containers/profile/sidebar/EntitySidebar.tsx b/datahub-web-react/src/app/entity/shared/containers/profile/sidebar/EntitySidebar.tsx index a8d1dceb71ec92..ffe007883e562d 100644 --- a/datahub-web-react/src/app/entity/shared/containers/profile/sidebar/EntitySidebar.tsx +++ b/datahub-web-react/src/app/entity/shared/containers/profile/sidebar/EntitySidebar.tsx @@ -46,7 +46,7 @@ export const EntitySidebar = ({ sidebarSections, topSection }: Props) => { return ( <> {topSection && } - {entityData?.lastIngested && ( + {!!(entityData?.lastIngested) && ( From 24fc0632a2571e7fc862cf57eae15a3b5bce288a Mon Sep 17 00:00:00 2001 From: Pinaki Bhattacharjee Date: Tue, 13 Aug 2024 18:34:41 +0530 Subject: [PATCH 2/3] update linting --- .../entity/shared/containers/profile/sidebar/EntitySidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datahub-web-react/src/app/entity/shared/containers/profile/sidebar/EntitySidebar.tsx b/datahub-web-react/src/app/entity/shared/containers/profile/sidebar/EntitySidebar.tsx index ffe007883e562d..b5e3b221c736d0 100644 --- a/datahub-web-react/src/app/entity/shared/containers/profile/sidebar/EntitySidebar.tsx +++ b/datahub-web-react/src/app/entity/shared/containers/profile/sidebar/EntitySidebar.tsx @@ -46,7 +46,7 @@ export const EntitySidebar = ({ sidebarSections, topSection }: Props) => { return ( <> {topSection && } - {!!(entityData?.lastIngested) && ( + {!!entityData?.lastIngested && ( From 91f31da150d05706231f55494446155392a493b9 Mon Sep 17 00:00:00 2001 From: Pinaki Bhattacharjee Date: Tue, 13 Aug 2024 19:46:06 +0530 Subject: [PATCH 3/3] Empty-Commit