Skip to content

Commit d694cb2

Browse files
committed
Hide dropdown for bic and iban
1 parent 8d44e62 commit d694cb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gui/src/components/TransferFundsWidget.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ async function startTransaction() {
160160
list="bicList"
161161
/>
162162
<datalist id="bicList">
163-
<option v-for="bic in utils.bics" :key="bic" :value="bic">{{ bic }}</option>
163+
<!-- <option v-for="bic in utils.bics" :key="bic" :value="bic">{{ bic }}</option> -->
164164
</datalist>
165165
<div class="validator-hint">BIC/Swift code must be 8 or 11 characters</div>
166166
</label>
@@ -182,7 +182,7 @@ async function startTransaction() {
182182
title="IBAN must start with 2 letters, followed by 2 digits, then up to 30 alphanumeric characters"
183183
/>
184184
<datalist id="ibanList">
185-
<option v-for="iban in utils.ibans" :key="iban" :value="iban">{{ iban }}</option>
185+
<!-- <option v-for="iban in utils.ibans" :key="iban" :value="iban">{{ iban }}</option> -->
186186
</datalist>
187187
<div class="validator-hint">Valid IBAN required (e.g., DE89370400440532013000)</div>
188188
</label>

0 commit comments

Comments
 (0)