From a31d0df8973422e73d2ad5690c7274b093b96d12 Mon Sep 17 00:00:00 2001 From: Daniel Lee Date: Mon, 21 Aug 2017 21:04:20 +0200 Subject: [PATCH] shortcuts: fixes expand/collapse all rows Fixes #9069 --- public/app/core/services/keybindingSrv.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }