mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-08 10:52:04 +02:00
Merge pull request #3311
45b5150
Utils: fix removeTrailingZeros regression (xiphon)
This commit is contained in:
commit
2a44f95f16
@ -113,5 +113,5 @@ function capitalize(s){
|
||||
}
|
||||
|
||||
function removeTrailingZeros(value) {
|
||||
return (value + '').replace(/\.?0*$/, '');
|
||||
return (value + '').replace(/(\.\d*?)0+$/, '$1').replace(/\.$/, '');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user