We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2ebb2b commit 76e232cCopy full SHA for 76e232c
resources/assets/js/components/TransactionWizard.vue
@@ -40,8 +40,12 @@
40
</div>
41
<div class="row__column ml-2">
42
<select v-model="selectedCurrencyId">
43
- <option v-for="currency in currencies" :key="'currencies-' + currency.id" :value="currency.id">
44
- <span v-html="currency.symbol"></span>
+ <option
+ v-for="currency in currencies"
45
+ :key="'currencies-' + currency.id"
46
+ :value="currency.id"
47
+ v-html="currency.symbol == currency.iso ? currency.symbol : `${currency.iso} ${currency.symbol}`"
48
+ >
49
</option>
50
</select>
51
0 commit comments