浏览代码

:art: https://github.com/siyuan-note/siyuan/issues/12335

Vanessa 7 月之前
父节点
当前提交
0239b88c43
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      app/src/util/pathName.ts

+ 2 - 2
app/src/util/pathName.ts

@@ -211,8 +211,9 @@ export const movePathTo = (cb: (toPath: string[], toNotebook: string[]) => void,
     }, flashcard);
 
     const inputElement = dialog.element.querySelector(".b3-text-field") as HTMLInputElement;
+    inputElement.value = window.siyuan.storage[Constants.LOCAL_MOVE_PATH].k;
     /// #if !MOBILE
-    inputElement.focus();
+    inputElement.select();
     /// #endif
     const inputEvent = (event?: InputEvent) => {
         if (event && event.isComposing) {
@@ -324,7 +325,6 @@ export const movePathTo = (cb: (toPath: string[], toNotebook: string[]) => void,
             y: rect.bottom
         });
     }
-    inputElement.value = window.siyuan.storage[Constants.LOCAL_MOVE_PATH].k;
     inputEvent();
     inputElement.addEventListener("compositionend", (event: InputEvent) => {
         inputEvent(event);