From 1c488cb8a7f8a226f1f38575fa32822fedab1067 Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Wed, 29 Apr 2020 15:06:27 +0200 Subject: Fix shortcuts mapping in the shortcuts list Shorcuts are case-sensitive therefore let's fix the keys in the shortcuts list. --- client/lib/keyboard.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'client/lib/keyboard.js') diff --git a/client/lib/keyboard.js b/client/lib/keyboard.js index da33f806..055eec18 100755 --- a/client/lib/keyboard.js +++ b/client/lib/keyboard.js @@ -97,19 +97,19 @@ Mousetrap.bind('c', evt => { Template.keyboardShortcuts.helpers({ mapping: [ { - keys: ['W'], + keys: ['w'], action: 'shortcut-toggle-sidebar', }, { - keys: ['Q'], + keys: ['q'], action: 'shortcut-filter-my-cards', }, { - keys: ['F'], + keys: ['f'], action: 'shortcut-toggle-filterbar', }, { - keys: ['X'], + keys: ['x'], action: 'shortcut-clear-filters', }, { @@ -129,7 +129,7 @@ Template.keyboardShortcuts.helpers({ action: 'shortcut-assign-self', }, { - keys: ['C'], + keys: ['c'], action: 'archive-card', }, ], -- cgit v1.2.3-1-g7c22