fix: trace explorer not highlighting in sidenav (#5263)

This commit is contained in:
Vikrant Gupta 2024-06-18 11:58:35 +05:30 committed by GitHub
parent c104b758ba
commit 3b4b9e43b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -125,8 +125,8 @@ const menuItems: SidebarItem[] = [
/** Mapping of some newly added routes and their corresponding active sidebar menu key */
export const NEW_ROUTES_MENU_ITEM_KEY_MAP: Record<string, string> = {
[ROUTES.TRACES_EXPLORER]: ROUTES.TRACE,
[ROUTES.TRACE_EXPLORER]: ROUTES.TRACE,
[ROUTES.TRACE]: ROUTES.TRACES_EXPLORER,
[ROUTES.TRACE_EXPLORER]: ROUTES.TRACES_EXPLORER,
[ROUTES.LOGS_BASE]: ROUTES.LOGS_EXPLORER,
};