Parcourir la source

style: 修改错误注释

奔跑的面条 il y a 3 ans
Parent
commit
db9dca09e8
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      src/views/chart/hooks/useKeyboard.hook.ts

+ 2 - 2
src/views/chart/hooks/useKeyboard.hook.ts

@@ -186,11 +186,11 @@ export const useAddKeyboard = () => {
         keymaster(e, throttle(() => { chartEditStore.setUnLock(); return false }, throttleTime))
         break;
 
-      // 锁定 ct+h
+      // 隐藏 ct+h
       case keyboardValue.hide:
         keymaster(e, throttle(() => { chartEditStore.setHide(); return false }, throttleTime))
         break;
-      // 解除锁定 ct+sh+h
+      // 解除隐藏 ct+sh+h
       case keyboardValue.show:
         keymaster(e, throttle(() => { chartEditStore.setShow(); return false }, throttleTime))
         break;