diff --git a/public/app/core/services/keybindingSrv.ts b/public/app/core/services/keybindingSrv.ts index f03ca8c8003..fb317fb7a68 100644 --- a/public/app/core/services/keybindingSrv.ts +++ b/public/app/core/services/keybindingSrv.ts @@ -180,14 +180,14 @@ export class KeybindingSrv { }); // collapse all rows - this.bind('d C', () => { + this.bind('d shift+c', () => { for (let row of dashboard.rows) { row.collapse = true; } }); // expand all rows - this.bind('d E', () => { + this.bind('d shift+e', () => { for (let row of dashboard.rows) { row.collapse = false; }