mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
Enable keyboard shortcuts by default
This commit is contained in:
parent
f1810e47e0
commit
189ebd4201
1 changed files with 2 additions and 2 deletions
|
@ -962,7 +962,7 @@ Users.helpers({
|
|||
},
|
||||
|
||||
isKeyboardShortcuts() {
|
||||
const { keyboardShortcuts = false } = this.profile || {};
|
||||
const { keyboardShortcuts = true } = this.profile || {};
|
||||
return keyboardShortcuts;
|
||||
},
|
||||
|
||||
|
@ -1031,7 +1031,7 @@ Users.mutations({
|
|||
};
|
||||
},
|
||||
toggleKeyboardShortcuts() {
|
||||
const { keyboardShortcuts = false } = this.profile || {};
|
||||
const { keyboardShortcuts = true } = this.profile || {};
|
||||
return {
|
||||
$set: {
|
||||
'profile.keyboardShortcuts': !keyboardShortcuts,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue