summaryrefslogtreecommitdiff
path: root/website/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'website/app.js')
-rw-r--r--website/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/app.js b/website/app.js
index 359fbf1ae..b1bce55aa 100644
--- a/website/app.js
+++ b/website/app.js
@@ -98,7 +98,7 @@ export function createSha1List(data) {
}
export function formatMB(bytes) {
- return Math.round(bytes / (1024 * 1024));
+ return (bytes / (1024 * 1024)).toFixed(2);
}
export function formatReqSec(reqPerSec) {