From 50d2562a069f2ad7307941f22c8f52d0d49d3316 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Tue, 7 May 2024 22:42:30 +0800 Subject: [PATCH] :art: fix https://github.com/siyuan-note/siyuan/issues/11294 --- app/src/block/popover.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/block/popover.ts b/app/src/block/popover.ts index 6c3d25050..7249f2d81 100644 --- a/app/src/block/popover.ts +++ b/app/src/block/popover.ts @@ -66,7 +66,8 @@ export const initBlockPopover = (app: App) => { } } if (tip && !aElement.classList.contains("b3-tooltips")) { - showTooltip(tip, aElement); + // https://github.com/siyuan-note/siyuan/issues/11294 + showTooltip(decodeURIComponent(tip), aElement); event.stopPropagation(); } else { hideTooltip();