mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-06 15:04:34 +08:00
webUI: increase the number of digits after the decimal point
This commit is contained in:
parent
706097ddda
commit
e075274177
@ -18,11 +18,18 @@ function friendlyUnit(value, isSpeed) {
|
||||
value /= 1024.;
|
||||
++i;
|
||||
}
|
||||
|
||||
function friendlyUnitPrecision(sizeUnit) {
|
||||
if (sizeUnit <= 2) return 1; // KiB, MiB
|
||||
else if (sizeUnit === 3) return 2; // GiB
|
||||
else return 3; // TiB, PiB, EiB
|
||||
}
|
||||
|
||||
var ret;
|
||||
if (i == 0)
|
||||
ret = value + " " + units[i];
|
||||
else
|
||||
ret = (Math.floor(10 * value) / 10).toFixed(1) //Don't round up
|
||||
ret = (Math.floor(10 * value) / 10).toFixed(friendlyUnitPrecision(i)) //Don't round up
|
||||
+ " " + units[i];
|
||||
|
||||
if (isSpeed)
|
||||
|
Loading…
Reference in New Issue
Block a user