From 4e673ebf9940376763ae1f02fa26678eabc51520 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Wed, 7 Aug 2024 22:48:58 +0800 Subject: [PATCH] :bug: fix https://github.com/siyuan-note/siyuan/issues/11098 --- app/src/protyle/render/av/action.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/protyle/render/av/action.ts b/app/src/protyle/render/av/action.ts index afc1760c3..dfca2e158 100644 --- a/app/src/protyle/render/av/action.ts +++ b/app/src/protyle/render/av/action.ts @@ -91,7 +91,7 @@ export const avClick = (protyle: IProtyle, event: MouseEvent & { target: HTMLEle searchElement.style.width = "128px"; searchElement.style.paddingLeft = ""; searchElement.style.paddingRight = ""; - searchElement.value = " "; + searchElement.value = Constants.ZWSP; setTimeout(() => { searchElement.focus(); }, Constants.TIMEOUT_TRANSITION);