Quellcode durchsuchen

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

Vanessa vor 1 Jahr
Ursprung
Commit
aeadb5f2db
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 2 1
      app/src/util/mount.ts

+ 2 - 1
app/src/util/mount.ts

@@ -96,7 +96,8 @@ export const mountHelp = () => {
     const notebookId = Constants.HELP_PATH[window.siyuan.config.appearance.lang as "zh_CN" | "en_US"];
     fetchPost("/api/notebook/removeNotebook", {notebook: notebookId, callback: Constants.CB_MOUNT_REMOVE}, () => {
         fetchPost("/api/notebook/openNotebook", {
-            notebook: notebookId
+            notebook: notebookId,
+            app: Constants.SIYUAN_APPID,
         });
     });
 };