From 04942e0b48d1c05ce08f923e636d3552e0add0d2 Mon Sep 17 00:00:00 2001 From: cheetah Date: Fri, 14 Mar 2025 18:35:32 +0000 Subject: [PATCH] fixed race cond --- html/index.html | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/html/index.html b/html/index.html index d8224c0..09142a2 100644 --- a/html/index.html +++ b/html/index.html @@ -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() {