Skip to content

Commit

Permalink
[Synthetics] Fix nav path (#148428)
Browse files Browse the repository at this point in the history
Fixes #145433
  • Loading branch information
shahzad31 authored Jan 9, 2023
1 parent 4362b5c commit 5de62a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const useMonitorListBreadcrumbs = (extraCrumbs?: Array<{ text: string; hr
useBreadcrumbs([
{
text: MONITOR_MANAGEMENT_CRUMB,
href: `${appPath}/${MONITORS_ROUTE}`,
href: `${appPath}${MONITORS_ROUTE}`,
},
...(extraCrumbs ?? []),
]);
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/synthetics/public/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ function registerSyntheticsRoutesWithNavigation(
}),
app: 'synthetics',
path: OVERVIEW_ROUTE,
matchFullPath: true,
matchFullPath: false,
ignoreTrailingSlash: true,
},
],
Expand Down

0 comments on commit 5de62a9

Please sign in to comment.