fix: show all currency if not specified (#3586)

This commit is contained in:
dni ⚡ 2025-11-26 17:13:47 +01:00 committed by GitHub
parent c8bdba8e53
commit 730ab59578
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -128,7 +128,11 @@
@change="updateWallet({currency: g.wallet.currency})" @change="updateWallet({currency: g.wallet.currency})"
type="text" type="text"
:disable="g.fiatTracking" :disable="g.fiatTracking"
:options="g.allowedCurrencies" :options="
g.allowedCurrencies.length > 0
? g.allowedCurrencies
: g.currencies
"
:label="$t('currency_settings')" :label="$t('currency_settings')"
></q-select> ></q-select>
</div> </div>