This commit is contained in:
James Cole 2019-09-14 18:06:46 +02:00
parent 8f683cd6ec
commit 657baf283d
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
2 changed files with 3 additions and 2 deletions

2
public/v1/js/app.js vendored

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@
-->
<template>
<div class="form-group" v-bind:class="{ 'has-error': hasError()}" v-if="(this.enabledCurrencies.length > 2 && this.transactionType === 'Deposit') || this.transactionType === 'Transfer'">
<div class="form-group" v-bind:class="{ 'has-error': hasError()}" v-if="(this.enabledCurrencies.length > 2 && this.transactionType === 'Deposit') || this.transactionType.toLowerCase() === 'transfer'">
<div class="col-sm-4">
<select class="form-control" ref="currency_select" name="foreign_currency[]" @input="handleInput">
<option
@ -27,6 +27,7 @@
v-if="currency.enabled"
:value="currency.id"
:label="currency.name"
:selected="value.currency_id === currency.id"
>
{{ currency.name }}