Skip to content

Commit b1b04b8

Browse files
committed
fix: configuration should be synced regardless of $_init
fixes #2521 fixes #2522
1 parent 6b825de commit b1b04b8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/@vue/cli-ui/src/views/ProjectConfigurationDetails.vue

-2
Original file line numberDiff line numberDiff line change
@@ -107,15 +107,13 @@ export default {
107107
id: this.id
108108
}
109109
},
110-
manual: true,
111110
async result ({ data, loading }) {
112111
if (!this.$_init && !loading && data && data.configuration) {
113112
this.$_init = true
114113
this.tabsHaveChanges = data.configuration.tabs.reduce((obj, tab) => {
115114
obj[tab.id] = false
116115
return obj
117116
}, {})
118-
this.configuration = data.configuration
119117
await this.$nextTick()
120118
this.currentTab = data.configuration.tabs[0].id
121119
}

0 commit comments

Comments
 (0)