Переглянути джерело

heatmap: fix error when series empty

Alexander Zobnin 7 роки тому
батько
коміт
bef024e4eb
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      public/app/plugins/panel/heatmap/heatmap_ctrl.ts

+ 1 - 1
public/app/plugins/panel/heatmap/heatmap_ctrl.ts

@@ -146,7 +146,7 @@ export class HeatmapCtrl extends MetricsPanelCtrl {
   }
 
   onRender() {
-    if (!this.range) {
+    if (!this.range || !this.series) {
       return;
     }