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 b07ffdb commit 21cc944Copy full SHA for 21cc944
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(50000) ? defaultFormat(decimal.div(new Decimal(10).pow(e.times(3)))) : "") + prefix
+ return (e.lt(3000) ? defaultFormat(decimal.div(new Decimal(10).pow(e.times(3)))) : "1") + prefix
159
}
160
161
setInterval(function() {
0 commit comments