Merge pull request #5639 from NadavTasher/feature/enable-keyboard-shortcuts-by-default

Enable keyboard shortcuts by default
This commit is contained in:
Lauri Ojansivu 2024-12-30 23:11:26 +02:00 committed by GitHub
commit ee4f09845c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,