From 63b561b39d9942a5f120dcd9b461450aae82e860 Mon Sep 17 00:00:00 2001 From: Roman Misyurin Date: Thu, 24 Oct 2019 09:43:54 +0300 Subject: [PATCH] PluginPage: replace plugin absolute url with relative (#19956) --- public/app/features/plugins/PluginPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/plugins/PluginPage.tsx b/public/app/features/plugins/PluginPage.tsx index bc79a835ac4..c7a938db41f 100644 --- a/public/app/features/plugins/PluginPage.tsx +++ b/public/app/features/plugins/PluginPage.tsx @@ -403,7 +403,7 @@ function getPluginTabsNav( text: meta.name, img: meta.info.logos.large, subTitle: meta.info.author.name, - breadcrumbs: [{ title: 'Plugins', url: '/plugins' }], + breadcrumbs: [{ title: 'Plugins', url: 'plugins' }], url: `${appSubUrl}${path}`, children: setActivePage(query.page as string, pages, defaultPage), };