diff --git a/public/app/core/services/keybindingSrv.ts b/public/app/core/services/keybindingSrv.ts index 502cceeff86..39bb4d86432 100644 --- a/public/app/core/services/keybindingSrv.ts +++ b/public/app/core/services/keybindingSrv.ts @@ -39,7 +39,7 @@ export class KeybindingSrv { } setupGlobal() { - if (this.contextSrv.user.isSignedIn) { + if (!(this.$location.path() === '/login')) { this.bind(['?', 'h'], this.showHelpModal); this.bind('g h', this.goToHome); this.bind('g a', this.openAlerting);