summaryrefslogtreecommitdiffstats
path: root/client/lib
diff options
context:
space:
mode:
authorMarc Hartmayer <hello@hartmayer.com>2020-04-29 15:06:27 +0200
committerMarc Hartmayer <hello@hartmayer.com>2020-04-29 15:14:56 +0200
commit1c488cb8a7f8a226f1f38575fa32822fedab1067 (patch)
treeb4d034f5a21277fa984f2bda1256a152a70bddf4 /client/lib
parent9e33d8cbab0c28d3f586628be8597f38d068b776 (diff)
downloadwekan-1c488cb8a7f8a226f1f38575fa32822fedab1067.tar.gz
wekan-1c488cb8a7f8a226f1f38575fa32822fedab1067.tar.bz2
wekan-1c488cb8a7f8a226f1f38575fa32822fedab1067.zip
Fix shortcuts mapping in the shortcuts list
Shorcuts are case-sensitive therefore let's fix the keys in the shortcuts list.
Diffstat (limited to 'client/lib')
-rwxr-xr-xclient/lib/keyboard.js10
1 files changed, 5 insertions, 5 deletions
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',
},
],