mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 18:02:34 +00:00
Update frontend.
This commit is contained in:
@@ -69,15 +69,34 @@ import {debounce} from 'lodash';
|
||||
export default {
|
||||
name: "TransactionAccount",
|
||||
components: {VueTypeaheadBootstrap},
|
||||
props: [
|
||||
'index',
|
||||
'direction',
|
||||
'value',
|
||||
'errors',
|
||||
'sourceAllowedTypes',
|
||||
'destinationAllowedTypes',
|
||||
'allowedOpposingTypes'
|
||||
],
|
||||
props: {
|
||||
index: {
|
||||
type: Number,
|
||||
},
|
||||
direction: {
|
||||
type: String,
|
||||
},
|
||||
value: {
|
||||
type: Object,
|
||||
default: () => ({})
|
||||
},
|
||||
errors: {
|
||||
type: Array,
|
||||
default: () => ([])
|
||||
},
|
||||
sourceAllowedTypes: {
|
||||
type: Array,
|
||||
default: () => ([])
|
||||
},
|
||||
destinationAllowedTypes: {
|
||||
type: Array,
|
||||
default: () => ([])
|
||||
},
|
||||
allowedOpposingTypes: {
|
||||
type: Object,
|
||||
default: () => ({})
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
query: '',
|
||||
|
||||
Reference in New Issue
Block a user