Commit bde9e9d5 by Torkel Ödegaard Committed by GitHub

Merge pull request #15394 from grafana/13066-save-as-dashboard

fix: No need to have edit permissions to be able to "Save as"
parents dcec61e1 335042b2
......@@ -38,7 +38,7 @@ export class SettingsCtrl {
});
});
this.canSaveAs = this.dashboard.meta.canEdit && contextSrv.hasEditPermissionInFolders;
this.canSaveAs = contextSrv.hasEditPermissionInFolders;
this.canSave = this.dashboard.meta.canSave;
this.canDelete = this.dashboard.meta.canSave;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment