diff --git a/src/rust/lqosd/src/node_manager/js_build/src/helpers/scaling.js b/src/rust/lqosd/src/node_manager/js_build/src/helpers/scaling.js
index 79efb8a5..5dfcbed9 100644
--- a/src/rust/lqosd/src/node_manager/js_build/src/helpers/scaling.js
+++ b/src/rust/lqosd/src/node_manager/js_build/src/helpers/scaling.js
@@ -72,7 +72,7 @@ export function formatThroughput(throughput, limitInMbps) {
}
blob += "";
- blob += "" + scaleNumber(throughput * 8, 1) + "bps";
+ blob += "" + scaleNumber(throughput, 1) + "bps";
blob += "";
return blob;
}