This commit is contained in:
Vanessa 2023-11-22 16:47:41 +08:00
parent 82a0932102
commit 72752f441a
4 changed files with 10 additions and 1 deletions

View file

@ -19,6 +19,7 @@ import {activeBlur, hideKeyboardToolbar, initKeyboardToolbar} from "./keyboardTo
import {syncGuide} from "../../sync/syncGuide";
import {Inbox} from "../../layout/dock/Inbox";
import {App} from "../../index";
import {setTitle} from "../../dialog/processSystem";
export const initFramework = (app: App, isStart: boolean) => {
setInlineStyle();
@ -162,5 +163,6 @@ const initEditorName = () => {
path: window.siyuan.mobile.editor.protyle.path,
title: inputElement.value,
});
setTitle(inputElement.value);
});
};