From 0ae118d3ed2123ac4f832318439b401a19e04431 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Fri, 3 Feb 2023 16:14:42 +0100 Subject: [PATCH] Page: Fixes plugins chromeless bug (#62879) --- public/app/core/components/Page/Page.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/app/core/components/Page/Page.tsx b/public/app/core/components/Page/Page.tsx index 3e55466782a..65f96065503 100644 --- a/public/app/core/components/Page/Page.tsx +++ b/public/app/core/components/Page/Page.tsx @@ -47,6 +47,9 @@ export const OldPage: PageType = ({ chrome.update({ sectionNav: navModel.node, }); + } else { + // Need to trigger a chrome state update for the route change to be processed + chrome.update({}); } }, [navModel, chrome]);