Skip to content

Commit

Permalink
Update NumberFormating.js
Browse files Browse the repository at this point in the history
  • Loading branch information
WiktorProj committed Sep 8, 2024
1 parent 21cc944 commit d09bd36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MeTMT/js/utils/NumberFormating.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function standardFormat(decimal) {
prefix += symbols[1][e.div(100000).floor().mod(10)]
prefix += symbols[2][e.div(1000000).floor().mod(10)]
prefix += e.div(1000).floor().mod(10).neq(0) ? "Mi" : ""
prefix += symbols[0][e.sub(1).mod(10)]
prefix += symbols[0][e.mod(10)]
prefix += symbols[1][e.div(10).floor().mod(10)]
prefix += symbols[2][e.div(100).floor().mod(10)]
if (first[e] != undefined) prefix = first[e]
Expand Down

0 comments on commit d09bd36

Please sign in to comment.