From 77633db00e24036089c39b2b889b9846c2c80d2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Bedi?= Date: Thu, 21 May 2020 09:55:58 +0200 Subject: [PATCH] Dashboard: Render PanelChrome on refresh (#24940) Fixes #23306 --- public/app/features/dashboard/dashgrid/PanelChrome.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/app/features/dashboard/dashgrid/PanelChrome.tsx b/public/app/features/dashboard/dashgrid/PanelChrome.tsx index 6b9cf809f80..a55c05d23d2 100644 --- a/public/app/features/dashboard/dashgrid/PanelChrome.tsx +++ b/public/app/features/dashboard/dashgrid/PanelChrome.tsx @@ -209,6 +209,9 @@ export class PanelChrome extends PureComponent { cacheTimeout: panel.cacheTimeout, transformations: panel.transformations, }); + } else { + // The panel should render on refresh as well if it doesn't have a query, like clock panel + this.onRender(); } };