From a64b95f98ecb07df5d2e98922f3fdb7febb47b07 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Mon, 12 Jun 2023 12:09:27 +0800 Subject: [PATCH] :art: Improve the mouse hove data sync button information on the desktop and browser https://github.com/siyuan-note/siyuan/issues/8521 --- app/src/layout/topBar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/layout/topBar.ts b/app/src/layout/topBar.ts index 203ec796f..83d58707b 100644 --- a/app/src/layout/topBar.ts +++ b/app/src/layout/topBar.ts @@ -243,13 +243,13 @@ export const initBar = (app: App) => { html = window.siyuan.languages._kernel[82].replace("%s", dayjs(response.data.synced).format("YYYY-MM-DD HH:mm")) + " " + response.data.kernel + "\n" html += response.data.stat; if (response.data.kernels.length > 0) { + html += "\n\n" response.data.kernels.forEach((item: { os: string; ver: string; hostname: string; id: string; }) => { - html += "\n\n" html += `${item.os}-${item.ver} ${item.hostname} ${item.id}\n` }) }