mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-05 03:52:59 +00:00
Update frontend.
This commit is contained in:
@@ -45,7 +45,7 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
url: this.value,
|
||||
availableFields: this.customFields
|
||||
availableFields: this.customFields,
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
@@ -61,8 +61,11 @@ export default {
|
||||
customFields: function (value) {
|
||||
this.availableFields = value;
|
||||
},
|
||||
value: function (value) {
|
||||
this.url = value;
|
||||
},
|
||||
url: function (value) {
|
||||
this.$emit('set-field', {field: 'external_url', index: index, value: value});
|
||||
this.$emit('set-field', {field: 'external_url', index: this.index, value: value});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user