Просмотр исходного кода

panel: use meta.soloMode instead of url check

when checking if rendering a png for lazy loading of panels.
Daniel Lee 8 лет назад
Родитель
Сommit
74c795b294
1 измененных файлов с 1 добавлено и 5 удалено
  1. 1 5
      public/app/features/panel/panel_ctrl.ts

+ 1 - 5
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;
     }