ux: menu icon on last breadcrumb will hint the user that it will pop up the menu
Massimo Melina committed
Aug 28, 2024 at 23:21 UTC
cc844604689715cd89d315f3fa391d7fab85038c
1 file changed
+4
-1
frontend/src/Breadcrumbs.ts
+4
-1
@@ -24,7 +24,10 @@ export function Breadcrumbs() {
24
key: path,
25
path,
26
label,
27
- current: i === breadcrumbs.length - 1,
27
+ ...i === breadcrumbs.length - 1 && {
28
+ current: true,
29
+ label: h(Fragment, {}, label, hIcon('menu', { style: { position: 'relative', top: 1, marginLeft: '.3em' } }))
30
+ },
31
}) )
32
)
33
}