🎨 Improve the mouse hove data sync button information on the desktop and browser https://github.com/siyuan-note/siyuan/issues/8521

This commit is contained in:
Daniel 2023-06-12 12:09:27 +08:00
parent 9fc86593f4
commit a64b95f98e
No known key found for this signature in database
GPG Key ID: 86211BA83DF03017

View File

@ -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`
})
}