mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2024-11-22 08:16:25 -06:00
Fix a bad case of the NaNs.
This commit is contained in:
parent
98d7bb88e1
commit
13e65cad70
@ -146,7 +146,7 @@
|
||||
|
||||
for (let i = 0; i < data.length; ++i) {
|
||||
let nodeDL = scaleNumber(data[i][Circuit.limit][0] * 1000000);
|
||||
let nodeUL = scaleNumber(data[i][Circuit.limit[1]] * 1000000);
|
||||
let nodeUL = scaleNumber(data[i][Circuit.limit][1] * 1000000);
|
||||
if (nodeDL == "0") nodeDL = "Unlimited";
|
||||
if (nodeUL == "0") nodeUL = "Unlimited";
|
||||
tbl += "<tr>";
|
||||
|
Loading…
Reference in New Issue
Block a user