Fixed free mem formatting bug

This commit is contained in:
Gunnar Skjold 2021-11-17 20:50:30 +01:00
parent 2a524cd0ac
commit a3561d5c58

View File

@ -253,7 +253,7 @@ var fetch = function() {
$('.ju').html(moment.duration(parseInt(json.u), 'seconds').humanize());
}
$('.jm').html((json.m.toFixed(0)/1000).toFixed(1));
$('.jm').html((parseInt(json.m).toFixed(0)/1000).toFixed(1));
setStatus("esp", json.em);
setStatus("han", json.hm);