Browse Source

minor formatting fix

fix-133-memory-crash
Dan Janosik 7 years ago
parent
commit
a775ef860c
  1. 2
      app/utils.js

2
app/utils.js

@ -85,7 +85,7 @@ function formatBytes(bytesInt) {
}
}
return bytesInt + " B";
return Math.floor(bytesInt) + " B";
}
var formatCurrencyCache = {};

Loading…
Cancel
Save