Skip to content

Commit 70c60fb

Browse files
committed
another dot fix
1 parent 8545c12 commit 70c60fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/ethplorer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2085,7 +2085,7 @@ Ethplorer = {
20852085
if((num.toString().indexOf("e-") > 0) && withDecimals){
20862086
var res = Ethplorer.Utils.toBig(num).toFixed(decimals);
20872087
if(cutZeroes){
2088-
res = res.replace(/0*$/, '').replace(/\.$/, '');
2088+
res = res.replace(/0*$/, '').replace(/\.$/, '.00');
20892089
}
20902090
return res;
20912091
}

0 commit comments

Comments
 (0)