Fix scaling error

This commit is contained in:
Herbert Wolverson 2024-07-08 16:09:23 -05:00
parent 0f759cbe5c
commit dff5e67261

View File

@ -72,7 +72,7 @@ export function formatThroughput(throughput, limitInMbps) {
} }
blob += "</span>"; blob += "</span>";
blob += "<span class='overlayThroughputNumber' style='color: white; font-weight: bold;'>" + scaleNumber(throughput * 8, 1) + "bps</span>"; blob += "<span class='overlayThroughputNumber' style='color: white; font-weight: bold;'>" + scaleNumber(throughput, 1) + "bps</span>";
blob += "</span>"; blob += "</span>";
return blob; return blob;
} }