diff --git a/changes/43125-reports-nav-underline b/changes/43125-reports-nav-underline new file mode 100644 index 0000000000..ef39fefcd6 --- /dev/null +++ b/changes/43125-reports-nav-underline @@ -0,0 +1 @@ +* Fixed missing underline on "Reports" nav item when active in top navigation. diff --git a/frontend/components/top_nav/SiteTopNav/navItems.ts b/frontend/components/top_nav/SiteTopNav/navItems.ts index a0fb278215..f4422659c4 100644 --- a/frontend/components/top_nav/SiteTopNav/navItems.ts +++ b/frontend/components/top_nav/SiteTopNav/navItems.ts @@ -85,7 +85,7 @@ export default ( { name: "Reports", location: { - regex: new RegExp(`^${URL_PREFIX}/queries/`), + regex: new RegExp(`^${URL_PREFIX}/reports/`), pathname: PATHS.MANAGE_REPORTS, }, withParams: { type: "query", names: ["fleet_id"] },