From da4df7dce8a999c7aa2eeceed24b45773d09e6b5 Mon Sep 17 00:00:00 2001 From: Herbert Wolverson Date: Tue, 2 Jul 2024 15:01:40 -0500 Subject: [PATCH] Scale the network tree numbers --- .../node_manager/js_build/src/dashlets/top_tree_summary.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rust/lqosd/src/node_manager/js_build/src/dashlets/top_tree_summary.js b/src/rust/lqosd/src/node_manager/js_build/src/dashlets/top_tree_summary.js index 44ca51c9..39179b03 100644 --- a/src/rust/lqosd/src/node_manager/js_build/src/dashlets/top_tree_summary.js +++ b/src/rust/lqosd/src/node_manager/js_build/src/dashlets/top_tree_summary.js @@ -43,8 +43,8 @@ export class TopTreeSummary extends BaseDashlet { msg.data.forEach((r) => { let row = document.createElement("tr"); row.appendChild(simpleRow(r[1].name)); - row.appendChild(simpleRow(scaleNumber(r[1].current_throughput[0]))); - row.appendChild(simpleRow(scaleNumber(r[1].current_throughput[1]))); + row.appendChild(simpleRow(scaleNumber(r[1].current_throughput[0] * 8))); + row.appendChild(simpleRow(scaleNumber(r[1].current_throughput[1] * 8))); t.appendChild(row); });