Skip to content

Commit

Permalink
HPCC-32956 ECL Watch v9 fix missing breadcrumb
Browse files Browse the repository at this point in the history
fix an issue with the ECL Watch v9 UI where the breadcrumb was missing

Signed-off-by: Jeremy Clements <[email protected]>
  • Loading branch information
jeclrsg committed Nov 6, 2024
1 parent f700e6a commit 5d8d6f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp/src/src-react/components/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ export const SubNavigation: React.FunctionComponent<SubNavigationProps> = ({
</Link>;
})}
</Stack.Item>
{!subNav &&
{!!subNav &&
<Stack.Item grow={1} style={{ lineHeight: "24px" }}>
{hashPath.includes("/files/")
? <Breadcrumbs hashPath={hashPath} ignoreN={2} />
Expand Down

0 comments on commit 5d8d6f0

Please sign in to comment.