From e828f3a97b5e8ca41754a6d30cf5d27079b7d0a4 Mon Sep 17 00:00:00 2001 From: bergquist Date: Wed, 22 Feb 2017 10:32:30 +0100 Subject: [PATCH] shortcuts: change init bind key to d --- 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 c382d751188..e591351b875 100644 --- a/public/app/core/services/keybindingSrv.ts +++ b/public/app/core/services/keybindingSrv.ts @@ -188,14 +188,14 @@ export class KeybindingSrv { }); // collapse all rows - this.bind('r C', () => { + this.bind('d C', () => { _.each(dashboard.rows, function(row) { row.collapse = true; }); }); // expand all rows - this.bind('r E', () => { + this.bind('d E', () => { _.each(dashboard.rows, function(row) { row.collapse = false; });