fix: show all currency if not specified (#3586)
This commit is contained in:
parent
c8bdba8e53
commit
730ab59578
1 changed files with 5 additions and 1 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue