From 8c3583935504ac98e6a04134f5a4576d6fae1a91 Mon Sep 17 00:00:00 2001 From: Rodney Norris Date: Wed, 25 Sep 2024 15:43:15 -0500 Subject: [PATCH] [Search][ES3] fix: link to dev_tools instead of dev_tools:console (#194060) ## Summary Updating the search "Dev Tools" link from using dev_tools:console to just dev_tools. The console deeplink is missing from the deeplinks definition sometimes and causing the side nav item to be removed. --- x-pack/plugins/serverless_search/public/navigation_tree.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/serverless_search/public/navigation_tree.ts b/x-pack/plugins/serverless_search/public/navigation_tree.ts index f5618e8b83e05..53899994181d6 100644 --- a/x-pack/plugins/serverless_search/public/navigation_tree.ts +++ b/x-pack/plugins/serverless_search/public/navigation_tree.ts @@ -33,7 +33,7 @@ export const navigationTree = (useSearchHomepage: boolean = false): NavigationTr title: i18n.translate('xpack.serverlessSearch.nav.devTools', { defaultMessage: 'Dev Tools', }), - link: 'dev_tools:console', + link: 'dev_tools', getIsActive: ({ pathNameSerialized, prepend }) => { return pathNameSerialized.startsWith(prepend('/app/dev_tools')); },