Skip to content
This repository was archived by the owner on Nov 17, 2020. It is now read-only.

Commit 1bf3606

Browse files
Merge pull request #694 from rabbitmq/fix_si_unit_symbol
Fix bytes prefix symbol
2 parents ee0f332 + de335ba commit 1bf3606

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

priv/www/js/formatters.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ function fmt_rate_axis(num, max) {
311311

312312
function fmt_bytes(bytes) {
313313
if (bytes == undefined) return UNKNOWN_REPR;
314-
return fmt_si_prefix(bytes, bytes, 1024, false) + 'B';
314+
return fmt_si_prefix(bytes, bytes, 1024, false) + 'iB';
315315
}
316316

317317
function fmt_bytes_axis(num, max) {

0 commit comments

Comments
 (0)