mirror of
https://github.com/basicswap/basicswap.git
synced 2025-11-05 10:28:10 +01:00
Fix BTC chart loads even if BTC is not enabled
This commit is contained in:
@@ -1136,15 +1136,32 @@ const app = {
|
|||||||
|
|
||||||
if (chartModule.chart) {
|
if (chartModule.chart) {
|
||||||
window.config.currentResolution = 'day';
|
window.config.currentResolution = 'day';
|
||||||
await chartModule.updateChart('BTC');
|
|
||||||
app.updateResolutionButtons('BTC');
|
let defaultCoin = null;
|
||||||
|
if (window.config.coins && window.config.coins.length > 0) {
|
||||||
|
for (const coin of window.config.coins) {
|
||||||
|
const container = document.getElementById(`${coin.symbol.toLowerCase()}-container`);
|
||||||
|
if (container) {
|
||||||
|
defaultCoin = coin.symbol;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!defaultCoin) {
|
||||||
|
defaultCoin = 'BTC';
|
||||||
|
}
|
||||||
|
|
||||||
|
await chartModule.updateChart(defaultCoin);
|
||||||
|
app.updateResolutionButtons(defaultCoin);
|
||||||
|
|
||||||
const chartTitle = document.getElementById('chart-title');
|
const chartTitle = document.getElementById('chart-title');
|
||||||
if (chartTitle) {
|
if (chartTitle) {
|
||||||
chartTitle.textContent = 'Price Chart (BTC)';
|
chartTitle.textContent = `Price Chart (${defaultCoin})`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ui.setActiveContainer(`${defaultCoin.toLowerCase()}-container`);
|
||||||
}
|
}
|
||||||
ui.setActiveContainer('btc-container');
|
|
||||||
|
|
||||||
app.setupEventListeners();
|
app.setupEventListeners();
|
||||||
app.initAutoRefresh();
|
app.initAutoRefresh();
|
||||||
|
|||||||
Reference in New Issue
Block a user