Commit 90c5a843 by Torkel Ödegaard

refactor: minor change to #10199

parent 04bb2b8c
......@@ -81,7 +81,7 @@ export class KeybindingSrv {
this.bind('mod+o', () => {
dashboard.graphTooltip = (dashboard.graphTooltip + 1) % 3;
appEvents.emit('graph-hover-clear');
scope.broadcastRefresh();
this.$rootScope.$broadcast('refresh');
});
this.bind('mod+s', e => {
......@@ -189,7 +189,7 @@ export class KeybindingSrv {
});
this.bind('d r', () => {
scope.ctrl.timeSrv.refreshDashboard();
this.$rootScope.$broadcast('refresh');
});
this.bind('d s', () => {
......
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