소스 검색

fix(repeat panel): fixed issue with snapshoting a dashboard with repeated panels, Fixes #2352

Torkel Ödegaard 10 년 전
부모
커밋
c7dafd4b42
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      public/app/features/dashboard/dynamicDashboardSrv.js

+ 4 - 0
public/app/features/dashboard/dynamicDashboardSrv.js

@@ -11,11 +11,15 @@ function (angular, _) {
     var self = this;
 
     this.init = function(dashboard) {
+      if (dashboard.snapshot) { return; }
+
       this.iteration = new Date().getTime();
       this.process(dashboard);
     };
 
     this.update = function(dashboard) {
+      if (dashboard.snapshot) { return; }
+
       this.iteration = this.iteration + 1;
       this.process(dashboard);
     };