From a89a2000f3cf82199b54aa87c120a778a4e3ca8f Mon Sep 17 00:00:00 2001 From: Vanessa Date: Wed, 23 Jul 2025 21:42:37 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/15338 --- app/src/protyle/toolbar/index.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app/src/protyle/toolbar/index.ts b/app/src/protyle/toolbar/index.ts index fd5d5ad32..171f8574e 100644 --- a/app/src/protyle/toolbar/index.ts +++ b/app/src/protyle/toolbar/index.ts @@ -1398,7 +1398,16 @@ export class Toolbar { }, (response) => { let searchHTML = ""; response.data.blocks.forEach((item: { path: string, content: string }, index: number) => { - searchHTML += `
${item.content}
`; + searchHTML += `
+${item.content}`; + /// #if !BROWSER + searchHTML += ` + +`; + /// #endif + searchHTML += ` + +
`; }); listElement.innerHTML = searchHTML || `
  • ${window.siyuan.languages.emptyContent}
  • `; const currentPath = response.data.blocks[0]?.path;