Merge pull request #8876 from mtanda/shortcut_new_dashboard

add new dashboard shortcut
This commit is contained in:
Carl Bergquist 2017-09-07 14:26:05 +02:00 committed by GitHub
commit 62979916ad

View File

@ -193,6 +193,10 @@ export class KeybindingSrv {
}
});
this.bind('d n', e => {
this.$location.url("/dashboard/new");
});
this.bind('d r', () => {
scope.broadcastRefresh();
});