فهرست منبع

Enable keyboard shortcuts by default

Nadav Tasher 5 ماه پیش
والد
کامیت
189ebd4201
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      models/users.js

+ 2 - 2
models/users.js

@@ -962,7 +962,7 @@ Users.helpers({
   },
   },
 
 
   isKeyboardShortcuts() {
   isKeyboardShortcuts() {
-    const { keyboardShortcuts = false } = this.profile || {};
+    const { keyboardShortcuts = true } = this.profile || {};
     return keyboardShortcuts;
     return keyboardShortcuts;
   },
   },
 
 
@@ -1031,7 +1031,7 @@ Users.mutations({
     };
     };
   },
   },
   toggleKeyboardShortcuts() {
   toggleKeyboardShortcuts() {
-    const { keyboardShortcuts = false } = this.profile || {};
+    const { keyboardShortcuts = true } = this.profile || {};
     return {
     return {
       $set: {
       $set: {
         'profile.keyboardShortcuts': !keyboardShortcuts,
         'profile.keyboardShortcuts': !keyboardShortcuts,