From dd248967383bd6dbef0ad74af950b1712a6c7481 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Wed, 8 May 2024 09:19:19 +0800 Subject: [PATCH] :art: fix https://github.com/siyuan-note/siyuan/issues/11301 --- app/src/history/history.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/history/history.ts b/app/src/history/history.ts index 414677e13..0e2a890dd 100644 --- a/app/src/history/history.ts +++ b/app/src/history/history.ts @@ -599,11 +599,11 @@ const bindEvent = (app: App, element: Element, dialog?: Dialog) => { chipClass += "b3-chip--warning "; ariaLabel = window.siyuan.languages.historyOutline; } - html += `
  • - ${docItem.op.substring(0, 1).toUpperCase()} - ${escapeHtml(docItem.title)} + html += `
  • + ${docItem.op.substring(0, 1).toUpperCase()} + ${escapeHtml(docItem.title)} - +
  • `;