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); });