2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-09-13 06:01:35 +00:00

Fix breadcrumb URL (#10270)

- Missing leading slash
This commit is contained in:
Oliver
2025-09-05 10:59:23 +10:00
committed by GitHub
parent ed04a37838
commit 9dadc2b475

View File

@@ -64,7 +64,7 @@ export function BreadcrumbList({
return ( return (
<Anchor <Anchor
key={`${index}-${breadcrumb.name}`} key={`${index}-${breadcrumb.name}`}
href={`${baseUrl}${breadcrumb.url}`} href={`/${baseUrl}${breadcrumb.url}`}
aria-label={`breadcrumb-${index}-${identifierString( aria-label={`breadcrumb-${index}-${identifierString(
breadcrumb.name breadcrumb.name
)}`} )}`}