Skip to content

Commit

Permalink
Update EntitySidebar.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
pinakipb2 authored Jul 3, 2024
1 parent b8af2b9 commit 5691990
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const EntitySidebar = <T,>({ sidebarSections, topSection }: Props) => {
return (
<>
{topSection && <topSection.component key={`${topSection.component}`} properties={topSection.properties} />}
{entityData?.lastIngested && (
{!!(entityData?.lastIngested) && (
<LastIngestedSection>
<LastIngested lastIngested={entityData.lastIngested} />
</LastIngestedSection>
Expand Down

0 comments on commit 5691990

Please sign in to comment.