From 36b0802789fbaf86a13988a39d9f7eb6b1856ca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Wed, 8 Jun 2016 05:29:38 +0200 Subject: [PATCH] fix(png): fixed issue with png rendering, fixes #5274 --- public/app/features/dashboard/viewStateSrv.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/public/app/features/dashboard/viewStateSrv.js b/public/app/features/dashboard/viewStateSrv.js index 2138dd37438..035bfb6ae6e 100644 --- a/public/app/features/dashboard/viewStateSrv.js +++ b/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; };