mirror of
https://github.com/basicswap/basicswap.git
synced 2025-11-06 02:38:11 +01:00
JS: Decimals
This commit is contained in:
@@ -417,7 +417,7 @@ displayCoinData: (coin, data) => {
|
|||||||
if (coin === 'BTC') {
|
if (coin === 'BTC') {
|
||||||
btcPriceDiv.style.display = 'none';
|
btcPriceDiv.style.display = 'none';
|
||||||
} else {
|
} else {
|
||||||
priceBtcElement.textContent = isError ? 'N/A' : `${priceBTC.toFixed(8)} BTC`;
|
priceBtcElement.textContent = isError ? 'N/A' : `${priceBTC.toFixed(8)}`;
|
||||||
btcPriceDiv.style.display = 'flex';
|
btcPriceDiv.style.display = 'flex';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -545,8 +545,10 @@ displayCoinData: (coin, data) => {
|
|||||||
if (price < 0.000001) return price.toExponential(2);
|
if (price < 0.000001) return price.toExponential(2);
|
||||||
if (price < 0.001) return price.toFixed(8);
|
if (price < 0.001) return price.toFixed(8);
|
||||||
if (price < 1) return price.toFixed(4);
|
if (price < 1) return price.toFixed(4);
|
||||||
|
if (price < 10) return price.toFixed(3);
|
||||||
if (price < 1000) return price.toFixed(2);
|
if (price < 1000) return price.toFixed(2);
|
||||||
return price.toFixed(1);
|
if (price < 100000) return price.toFixed(1);
|
||||||
|
return price.toFixed(0);
|
||||||
},
|
},
|
||||||
|
|
||||||
setActiveContainer: (containerId) => {
|
setActiveContainer: (containerId) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user