mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Synthetics] Fix nav path (#148428)
Fixes https://github.com/elastic/kibana/issues/145433
This commit is contained in:
parent
4362b5c688
commit
5de62a95b8
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ export const useMonitorListBreadcrumbs = (extraCrumbs?: Array<{ text: string; hr
|
||||||
useBreadcrumbs([
|
useBreadcrumbs([
|
||||||
{
|
{
|
||||||
text: MONITOR_MANAGEMENT_CRUMB,
|
text: MONITOR_MANAGEMENT_CRUMB,
|
||||||
href: `${appPath}/${MONITORS_ROUTE}`,
|
href: `${appPath}${MONITORS_ROUTE}`,
|
||||||
},
|
},
|
||||||
...(extraCrumbs ?? []),
|
...(extraCrumbs ?? []),
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -273,7 +273,7 @@ function registerSyntheticsRoutesWithNavigation(
|
||||||
}),
|
}),
|
||||||
app: 'synthetics',
|
app: 'synthetics',
|
||||||
path: OVERVIEW_ROUTE,
|
path: OVERVIEW_ROUTE,
|
||||||
matchFullPath: true,
|
matchFullPath: false,
|
||||||
ignoreTrailingSlash: true,
|
ignoreTrailingSlash: true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue