Skip to content

Commit 36b0802

Browse files
committed
fix(png): fixed issue with png rendering, fixes grafana#5274
1 parent b76b42f commit 36b0802

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

public/app/features/dashboard/viewStateSrv.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,13 @@ function (angular, _, $) {
9292
state.fullscreen = state.fullscreen ? true : null;
9393
state.edit = (state.edit === "true" || state.edit === true) || null;
9494
state.editview = state.editview || null;
95-
state.org = contextSrv.user.orgId;
9695
return state;
9796
};
9897

9998
DashboardViewState.prototype.serializeToUrl = function() {
10099
var urlState = _.clone(this.state);
101100
urlState.fullscreen = this.state.fullscreen ? true : null;
102101
urlState.edit = this.state.edit ? true : null;
103-
urlState.org = contextSrv.user.orgId;
104102
return urlState;
105103
};
106104

0 commit comments

Comments
 (0)