mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix #2598
This commit is contained in:
parent
8f683cd6ec
commit
657baf283d
2
public/v1/js/app.js
vendored
2
public/v1/js/app.js
vendored
File diff suppressed because one or more lines are too long
@ -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 }}
|
||||
|
Loading…
Reference in New Issue
Block a user