diff --git a/src/app/item-detail/item-detail.component.ts b/src/app/item-detail/item-detail.component.ts index 0a74ad29..8c0a0903 100644 --- a/src/app/item-detail/item-detail.component.ts +++ b/src/app/item-detail/item-detail.component.ts @@ -251,7 +251,7 @@ export class ItemDetailComponent implements OnInit { } bytesToMbps(bytes) { - return this.roundNumberTwoDecimals(bytes / Math.pow(1024, 2)); + return this.roundNumberTwoDecimals(bytes * 8.0E-6); } toggleThroughputBand({ element, perfAnalysis }) {