浏览代码

feat: delete workflow button

Ahmad Kholid 2 年之前
父节点
当前提交
3fbd8d55e2
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      src/content/commandPalette/App.vue

+ 2 - 0
src/content/commandPalette/App.vue

@@ -383,6 +383,8 @@ watch(
 
 onMounted(() => {
   browser.storage.local.get('automaShortcut').then(({ automaShortcut }) => {
+    if (Array.isArray(automaShortcut) && automaShortcut.length < 1) return;
+
     let keys = ['mod', 'shift', 'a'];
     if (automaShortcut) keys = automaShortcut.split('+');