|
@@ -241,11 +241,11 @@ export const initBar = (app: App) => {
|
|
|
html = response.data.stat;
|
|
|
} else {
|
|
|
html = window.siyuan.languages._kernel[82].replace("%s", dayjs(response.data.synced).format("YYYY-MM-DD HH:mm")) + "<br>";
|
|
|
- html += " " + response.data.stat;
|
|
|
+ html += " " + response.data.stat;
|
|
|
if (response.data.kernels.length > 0) {
|
|
|
html += "<br>";
|
|
|
html += window.siyuan.languages.currentKernel + "<br>";
|
|
|
- html += " " + response.data.kernel + "/" + window.siyuan.config.system.kernelVersion + " (" + window.siyuan.config.system.os + "/" + window.siyuan.config.system.name + ")<br>";
|
|
|
+ html += " " + response.data.kernel + "/" + window.siyuan.config.system.kernelVersion + " (" + window.siyuan.config.system.os + "/" + window.siyuan.config.system.name + ")<br>";
|
|
|
html += window.siyuan.languages.otherOnlineKernels + "<br>";
|
|
|
response.data.kernels.forEach((item: {
|
|
|
os: string;
|
|
@@ -253,7 +253,7 @@ export const initBar = (app: App) => {
|
|
|
hostname: string;
|
|
|
id: string;
|
|
|
}) => {
|
|
|
- html += ` ${item.id}/${item.ver} (${item.os}/${item.hostname}) <br>`;
|
|
|
+ html += ` ${item.id}/${item.ver} (${item.os}/${item.hostname}) <br>`;
|
|
|
});
|
|
|
}
|
|
|
}
|