From 3c0c1ca93062b52c73cc7199e6f6ea117d439715 Mon Sep 17 00:00:00 2001 From: arcbtc Date: Thu, 19 Dec 2024 20:25:59 +0000 Subject: [PATCH] small bug --- lnbits/static/js/wallet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnbits/static/js/wallet.js b/lnbits/static/js/wallet.js index 5b67279f5..2bb0dfb79 100644 --- a/lnbits/static/js/wallet.js +++ b/lnbits/static/js/wallet.js @@ -716,7 +716,7 @@ window.app = Vue.createApp({ this.fetchBalance() }, 'update.currency'(newValue) { - if (this.ignoreWatcher) return + if (this.ignoreWatcher || this.update.currency == '') return this.updateWallet({currency: newValue}) this.updateFiatBalance(newValue) },