diff --git a/app/src/editor/util.ts b/app/src/editor/util.ts index c7efc1a91..f740e5dd5 100644 --- a/app/src/editor/util.ts +++ b/app/src/editor/util.ts @@ -27,7 +27,6 @@ import { import {getPreviousHeading} from "../protyle/wysiwyg/getBlock"; import {lockFile, setTitle} from "../dialog/processSystem"; import {zoomOut} from "../menus/protyle"; -import {confirmDialog} from "../dialog/confirmDialog"; export const openFileById = (options: { id: string, diff --git a/app/src/protyle/ui/hideElements.ts b/app/src/protyle/ui/hideElements.ts index ea7a49260..f7c7c5215 100644 --- a/app/src/protyle/ui/hideElements.ts +++ b/app/src/protyle/ui/hideElements.ts @@ -3,7 +3,7 @@ export const hideElements = (panels: string[], protyle?: IProtyle) => { if (!protyle) { if (panels.includes("dialog")) { for (let i = 0; i < window.siyuan.dialogs.length; i++) { - window.siyuan.dialogs[i].destroy() + window.siyuan.dialogs[i].destroy(); i--; } } diff --git a/app/src/util/globalShortcut.ts b/app/src/util/globalShortcut.ts index 9343b7a73..d8da23090 100644 --- a/app/src/util/globalShortcut.ts +++ b/app/src/util/globalShortcut.ts @@ -74,7 +74,7 @@ const switchDialogEvent = (event: MouseEvent, switchDialog: Dialog) => { } target = target.parentElement; } -} +}; export const globalShortcut = () => { window.addEventListener("mousemove", (event) => { @@ -323,11 +323,11 @@ export const globalShortcut = () => { }); if (isMac()) { switchDialog.element.addEventListener("contextmenu", (event) => { - switchDialogEvent(event, switchDialog) + switchDialogEvent(event, switchDialog); }); } switchDialog.element.addEventListener("click", (event) => { - switchDialogEvent(event, switchDialog) + switchDialogEvent(event, switchDialog); }); return; }