We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4833424 commit b07ffdbCopy full SHA for b07ffdb
MeTMT/js/utils/NumberFormating.js
@@ -155,7 +155,7 @@ function standardFormat(decimal) {
155
prefix += symbols[1][e.div(10).floor().mod(10)]
156
prefix += symbols[2][e.div(100).floor().mod(10)]
157
if (first[e] != undefined) prefix = first[e]
158
- return (e.lt(1500) ? defaultFormat(decimal.div(new Decimal(10).pow(e.times(3)))) : "") + prefix
+ return (e.lt(50000) ? defaultFormat(decimal.div(new Decimal(10).pow(e.times(3)))) : "") + prefix
159
}
160
161
setInterval(function() {
0 commit comments