diff --git a/public/app/features/panel/panel_ctrl.ts b/public/app/features/panel/panel_ctrl.ts index 0c80d7a88e3..8de78291baa 100644 --- a/public/app/features/panel/panel_ctrl.ts +++ b/public/app/features/panel/panel_ctrl.ts @@ -76,12 +76,8 @@ export class PanelCtrl { profiler.renderingCompleted(this.panel.id, this.timing); } - private isRenderingPng () { - return window.location.href.indexOf("/dashboard-solo/db") >= 0; - } - refresh() { - if (!this.isPanelVisible() && !this.isRenderingPng() && !this.dashboard.snapshot) { + if (!this.isPanelVisible() && !this.dashboard.meta.soloMode && !this.dashboard.snapshot) { this.skippedLastRefresh = true; return; }