fixed race cond
This commit is contained in:
parent
085e86a7b4
commit
04942e0b48
1 changed files with 5 additions and 8 deletions
|
@ -124,16 +124,13 @@
|
||||||
},
|
},
|
||||||
storeConfig() {
|
storeConfig() {
|
||||||
const storeConfig = JSON.parse(JSON.stringify(this.configData))
|
const storeConfig = JSON.parse(JSON.stringify(this.configData))
|
||||||
storeConfig.deliveryModes = storeConfig.deliveryModes.map((x) => {
|
this.$http.post(window.location.pathname + 'config', storeConfig)
|
||||||
delete x._id
|
.then(response => {
|
||||||
return x
|
|
||||||
})
|
|
||||||
this.$http.post(window.location.pathname + 'config', storeConfig).then(response => {
|
|
||||||
})
|
|
||||||
.then(this.$http.post(window.location.pathname + 'restart'))
|
|
||||||
.then(() => {
|
|
||||||
document.body.style = 'display:none'
|
document.body.style = 'display:none'
|
||||||
setTimeout(() => window.location.reload(), 1e3)
|
setTimeout(() => window.location.reload(), 1e3)
|
||||||
|
this.$http.post(window.location.pathname + 'restart')
|
||||||
|
.then(() => {
|
||||||
|
})
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
addDeliveryMode() {
|
addDeliveryMode() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue