mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2025-02-25 18:55:32 -06:00
Scale the network tree numbers
This commit is contained in:
parent
430c4030af
commit
da4df7dce8
@ -43,8 +43,8 @@ export class TopTreeSummary extends BaseDashlet {
|
|||||||
msg.data.forEach((r) => {
|
msg.data.forEach((r) => {
|
||||||
let row = document.createElement("tr");
|
let row = document.createElement("tr");
|
||||||
row.appendChild(simpleRow(r[1].name));
|
row.appendChild(simpleRow(r[1].name));
|
||||||
row.appendChild(simpleRow(scaleNumber(r[1].current_throughput[0])));
|
row.appendChild(simpleRow(scaleNumber(r[1].current_throughput[0] * 8)));
|
||||||
row.appendChild(simpleRow(scaleNumber(r[1].current_throughput[1])));
|
row.appendChild(simpleRow(scaleNumber(r[1].current_throughput[1] * 8)));
|
||||||
t.appendChild(row);
|
t.appendChild(row);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user