mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-05 04:21:40 +00:00
Update frontend.
This commit is contained in:
@@ -49,7 +49,8 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
budgetList: [],
|
||||
budget: this.value
|
||||
budget: this.value,
|
||||
emitEvent: true
|
||||
}
|
||||
},
|
||||
created() {
|
||||
@@ -87,6 +88,10 @@ export default {
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
value: function (value) {
|
||||
this.emitEvent = false;
|
||||
this.budget = value;
|
||||
},
|
||||
budget: function (value) {
|
||||
this.$emit('set-field', {field: 'budget_id', index: this.index, value: value});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user