소스 검색

fix(png): fixed issue with png rendering, fixes #5274

Torkel Ödegaard 9 년 전
부모
커밋
36b0802789
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      public/app/features/dashboard/viewStateSrv.js

+ 0 - 2
public/app/features/dashboard/viewStateSrv.js

@@ -92,7 +92,6 @@ function (angular, _, $) {
       state.fullscreen = state.fullscreen ? true : null;
       state.edit =  (state.edit === "true" || state.edit === true) || null;
       state.editview = state.editview || null;
-      state.org = contextSrv.user.orgId;
       return state;
     };
 
@@ -100,7 +99,6 @@ function (angular, _, $) {
       var urlState = _.clone(this.state);
       urlState.fullscreen = this.state.fullscreen ? true : null;
       urlState.edit = this.state.edit ? true : null;
-      urlState.org = contextSrv.user.orgId;
       return urlState;
     };