re-order formating flow

This commit is contained in:
liangping 2023-10-30 09:21:27 +08:00
parent 3ffcc90dd2
commit 7618ea9ffd

View File

@ -255,14 +255,12 @@ export const useFormatter = defineStore('formatter', {
denom = unit.denom.toUpperCase();
}
}
if(amount < 0.01) {
fmt = '0.[000000]'
}
if(amount < 0.000001) {
return `0 ${denom.substring(0, 10)}`;
}
console.log("amount:", amount, numeral(amount).format(fmt))
if(amount < 0.01) {
fmt = '0.[000000]'
}
return `${numeral(amount).format(fmt)} ${
withDenom ? denom.substring(0, 10) : ''
}`;