fixed hdd space mistake

This commit is contained in:
mount 2026-07-25 23:04:23 +02:00
parent 2f0634ed85
commit c6c85c0511

View File

@ -374,7 +374,7 @@ SystemMonitorGraph.prototype = {
value = hdd_use / 100;
break;
case "space":
value = hdd_free / hdd_total;
value = 1.0 - hdd_free / hdd_total;
break;
}
let hdd_prefix = "";