fixed race cond

This commit is contained in:
cheetah 2025-03-14 18:35:32 +00:00
parent 085e86a7b4
commit 04942e0b48

View file

@ -124,16 +124,13 @@
},
storeConfig() {
const storeConfig = JSON.parse(JSON.stringify(this.configData))
storeConfig.deliveryModes = storeConfig.deliveryModes.map((x) => {
delete x._id
return x
})
this.$http.post(window.location.pathname + 'config', storeConfig).then(response => {
})
.then(this.$http.post(window.location.pathname + 'restart'))
.then(() => {
this.$http.post(window.location.pathname + 'config', storeConfig)
.then(response => {
document.body.style = 'display:none'
setTimeout(() => window.location.reload(), 1e3)
this.$http.post(window.location.pathname + 'restart')
.then(() => {
})
})
},
addDeliveryMode() {