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 f39de79 commit 2336604Copy full SHA for 2336604
MeTMT/js/utils/NumberFormating.js
@@ -161,7 +161,7 @@ function standardFormat(decimal) {
161
decimal = new Decimal(decimal)
162
e3 = decimal.log10().div(3).floor()
163
if (formattingSymbols[1][e3.div(100).floor()] == undefined ) return defaultFormat(decimal)
164
- return defaultFormat(decimal.div(new Decimal(1000).pow(e3)), e3.gt(0) ? 2 : 0) + formattingSymbols[0][e3.mod(100)] + formattingSymbols[1][e3.div(100).floor()]
+ return defaultFormat(decimal.div(new Decimal(1000).pow(e3)), e3.gt(0) ? 2 : 1) + formattingSymbols[0][e3.mod(100)] + formattingSymbols[1][e3.div(100).floor()]
165
}
166
167
setInterval(function() {
0 commit comments