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

Commit 307744e

Browse files
Merge pull request #694 from rabbitmq/fix_si_unit_symbol
Fix bytes prefix symbol (cherry picked from commit 1bf3606)
1 parent aa8642b commit 307744e

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
@@ -293,7 +293,7 @@ function fmt_rate_axis(num, max) {
293293

294294
function fmt_bytes(bytes) {
295295
if (bytes == undefined) return UNKNOWN_REPR;
296-
return fmt_si_prefix(bytes, bytes, 1024, false) + 'B';
296+
return fmt_si_prefix(bytes, bytes, 1024, false) + 'iB';
297297
}
298298

299299
function fmt_bytes_axis(num, max) {

0 commit comments

Comments
 (0)