diff --git a/src/routes/settings/fields.vue b/src/routes/settings/fields.vue index 654d105681..1974533683 100644 --- a/src/routes/settings/fields.vue +++ b/src/routes/settings/fields.vue @@ -52,7 +52,7 @@ @@ -166,16 +166,19 @@ export default { ]; }, collectionInfo() { - return { - ...this.$store.state.collections[this.collection], - ...this.edits - }; + return this.$store.state.collections[this.collection]; }, fieldsWithSort() { return this.fields.map((field, index) => ({ ...field, sort: index + 1 })); + }, + values() { + return { + ...this.collectionInfo, + ...this.edits + }; } }, methods: {