mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2024-11-22 00:07:21 -06:00
Actually limit the top 10 endpoints to being 10
This commit is contained in:
parent
c16f06b0ab
commit
fae96280b9
@ -361,7 +361,7 @@
|
||||
html += "<th>DL RTT</th>";
|
||||
html += "</thead></tbody>";
|
||||
let i = 0;
|
||||
while (i < data.length) {
|
||||
while (i < data.length && i < 10) {
|
||||
html += "<tr>";
|
||||
html += "<td>" + data[i][0] + "</td>";
|
||||
html += "<td>" + scaleNumber(data[i][1][0]) + "</td>";
|
||||
|
Loading…
Reference in New Issue
Block a user