Skip to content

Commit

Permalink
fix: null check for ent
Browse files Browse the repository at this point in the history
  • Loading branch information
eshankvaish committed Nov 15, 2024
1 parent 64d31cf commit 5b4fd91
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ const ResourceList = () => {
clusterName={selectedCluster.label}
lowercaseKindToResourceGroupMap={lowercaseKindToResourceGroupMap}
/>,
<MonitoringDashboard />,
...(MonitoringDashboard ? [<MonitoringDashboard />] : []),
...(isSuperAdmin && getTabById(ResourceBrowserTabsId.terminal)?.isAlive
? [<AdminTerminal isSuperAdmin={isSuperAdmin} updateTerminalTabUrl={updateTerminalTabUrl} />]
: []),
Expand Down

0 comments on commit 5b4fd91

Please sign in to comment.