Procházet zdrojové kódy

:art: `新建文档名模板` 改为 `新建文档存放位置` 并支持设置路径 https://github.com/siyuan-note/siyuan/issues/4494

Liang Ding před 2 roky
rodič
revize
2982ac75dd
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      app/src/util/newFile.ts

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

@@ -53,13 +53,13 @@ export const newFile = (notebookId?: string, currentPath?: string, open?: boolea
             }
         });
     }
-    fetchPost("/api/filetree/getDocNameTemplate", {notebook: notebookId}, (data) => {
+    fetchPost("/api/filetree/getDocCreateSavePath", {notebook: notebookId}, (data) => {
         const id = Lute.NewNodeID();
         const newPath = pathPosix().join(getDisplayName(currentPath, false, true), id + ".sy");
         if (paths) {
             paths[paths.indexOf(undefined)] = newPath;
         }
-        if (!validateName(data.data.name)) {
+        if (!validateName(data.data.path)) {
             return;
         }
         fetchPost("/api/filetree/createDoc", {