From 2516da812c824c9b2f9fd997cf5e884123b5de4c Mon Sep 17 00:00:00 2001 From: Vanessa Date: Sun, 9 Oct 2022 19:09:19 +0800 Subject: [PATCH] :art: fix https://github.com/siyuan-note/siyuan/issues/6114 --- app/src/block/popover.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/block/popover.ts b/app/src/block/popover.ts index 05f3a64b4..4f7d24247 100644 --- a/app/src/block/popover.ts +++ b/app/src/block/popover.ts @@ -23,7 +23,7 @@ export const initBlockPopover = () => { tip = aElement.getAttribute("data-href"); const title = aElement.getAttribute("data-title"); if (title) { - tip += " " + title; + tip = title + "
" + tip; } } if (tip && !tip.startsWith("siyuan://blocks") && !aElement.classList.contains("b3-tooltips")) {