From ff0a33737b20917ef15a1da0b3b23ac08a97fd9c Mon Sep 17 00:00:00 2001 From: Vanessa Date: Fri, 1 Mar 2024 09:05:22 +0800 Subject: [PATCH] :bug: fix https://github.com/siyuan-note/siyuan/issues/10475 --- app/src/dialog/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/dialog/index.ts b/app/src/dialog/index.ts index 1366e5eca..966d5d4e0 100644 --- a/app/src/dialog/index.ts +++ b/app/src/dialog/index.ts @@ -99,6 +99,8 @@ export class Dialog { return true; } }); + // https://github.com/siyuan-note/siyuan/issues/10475 + document.getElementById("drag")?.classList.remove("fn__hidden"); } public bindInput(inputElement: HTMLInputElement | HTMLTextAreaElement, enterEvent?: () => void, bindEnter = true) {