diff --git a/app/src/layout/dock/Files.ts b/app/src/layout/dock/Files.ts index 72274c8c9..6c8efeda3 100644 --- a/app/src/layout/dock/Files.ts +++ b/app/src/layout/dock/Files.ts @@ -315,7 +315,7 @@ export class Files extends Model { notebookId, currentPath: pathString, useSavePath: false, - pushCreateEvt: true, + listDocTree: true, }); } else if (type === "more-root") { initNavigationMenu(options.app, target.parentElement).popup({ diff --git a/app/src/menus/navigation.ts b/app/src/menus/navigation.ts index 95ecd2d6c..bc57463df 100644 --- a/app/src/menus/navigation.ts +++ b/app/src/menus/navigation.ts @@ -459,7 +459,7 @@ export const initFileMenu = (app: App, notebookId: string, pathString: string, l currentPath: pathPosix().dirname(pathString), paths, useSavePath: false, - pushCreateEvt: true, + listDocTree: true, }); } }).element); @@ -483,7 +483,7 @@ export const initFileMenu = (app: App, notebookId: string, pathString: string, l currentPath: pathPosix().dirname(pathString), paths, useSavePath: false, - pushCreateEvt: true, + listDocTree: true, }); } }).element); diff --git a/app/src/mobile/dock/MobileFiles.ts b/app/src/mobile/dock/MobileFiles.ts index b71f291dc..fefb5d376 100644 --- a/app/src/mobile/dock/MobileFiles.ts +++ b/app/src/mobile/dock/MobileFiles.ts @@ -212,7 +212,7 @@ export class MobileFiles extends Model { notebookId, currentPath: pathString, useSavePath: false, - pushCreateEvt: true, + listDocTree: true, }); } else if (type === "more-root") { initNavigationMenu(app, target.parentElement); diff --git a/app/src/util/newFile.ts b/app/src/util/newFile.ts index 1738fd824..6ee5d02e5 100644 --- a/app/src/util/newFile.ts +++ b/app/src/util/newFile.ts @@ -81,7 +81,7 @@ export const newFile = (optios: { useSavePath: boolean, name?: string, afterCB?: (id: string, title: string) => void - pushCreateEvt?: boolean + listDocTree?: boolean }) => { if (getOpenNotebookCount() === 0) { showMessage(window.siyuan.languages.newFileTip); @@ -104,7 +104,7 @@ export const newFile = (optios: { path: createPath, // 根目录时无法确定 parentID markdown: "", - pushCreateEvt: optios.pushCreateEvt + listDocTree: optios.listDocTree }, response => { if (optios.afterCB) { optios.afterCB(response.data, pathPosix().basename(createPath)); @@ -130,7 +130,7 @@ export const newFile = (optios: { path: createPath, parentID: getDisplayName(optios.currentPath, true, true), markdown: "", - pushCreateEvt: optios.pushCreateEvt + listDocTree: optios.listDocTree }, response => { if (optios.afterCB) { optios.afterCB(response.data, pathPosix().basename(createPath)); @@ -158,7 +158,7 @@ export const newFile = (optios: { notebook: data.data.box, path: createPath, markdown: "", - pushCreateEvt: optios.pushCreateEvt + listDocTree: optios.listDocTree }, response => { if (optios.afterCB) { optios.afterCB(response.data, pathPosix().basename(createPath)); @@ -187,7 +187,7 @@ export const newFile = (optios: { title, md: "", sorts: optios.paths, - pushCreateEvt: optios.pushCreateEvt + listDocTree: optios.listDocTree }, () => { if (optios.afterCB) { optios.afterCB(id, title);