Removing spaces between CPU load and temperature.

This commit is contained in:
Marat Fayzullin 2023-06-27 12:04:32 -04:00
parent 9e944b231f
commit a283dced07
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ CpuProgressBar.prototype.getDefaultText = function() {
};
CpuProgressBar.prototype.setUsage = function(usage) {
const temp = this.temp? " / " + this.temp + "°C" : "";
const temp = this.temp? "/" + this.temp + "°C" : "";
this.set(usage, "Server CPU [" + Math.round(usage * 100) + "%" + temp + "]", usage > .85);
};