Skip to content

Commit 683df2b

Browse files
authored
Merge pull request #2528 from headlamp-k8s/map-link-fix
frontend Map: Fix breadcrumb link causing navigation in electron app
2 parents ffe37eb + e9fe116 commit 683df2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/resourceMap/SelectionBreadcrumbs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ export function SelectionBreadcrumbs({
6464
) : (
6565
<Link
6666
key={it.id}
67-
href="#"
6867
onClick={() => onNodeClick(it.id)}
6968
sx={{
7069
textTransform: 'unset',
7170
maxWidth: '200px',
7271
whiteSpace: 'nowrap',
7372
overflow: 'hidden',
7473
textOverflow: 'ellipsis',
74+
cursor: 'pointer',
7575
}}
7676
>
7777
{getLabel(it)}

0 commit comments

Comments
 (0)