mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-29 18:20:01 +00:00
Fix #2393
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
<template>
|
||||
<div class="form-group"
|
||||
v-bind:class="{ 'has-error': hasError()}"
|
||||
v-if="typeof this.transactionType !== 'undefined' && this.transactionType === 'Withdrawal'">
|
||||
v-if="typeof this.transactionType === 'undefined' || this.transactionType === 'Withdrawal' || this.transactionType === '' || null === this.transactionType">
|
||||
<div class="col-sm-12">
|
||||
<select name="budget[]" ref="budget" @input="handleInput" class="form-control"
|
||||
v-if="this.budgets.length > 0">
|
||||
|
Reference in New Issue
Block a user