fixed race cond

This commit is contained in:
cheetah 2025-03-14 18:44:18 +00:00
parent bcd6d2532d
commit 5ca2488e9a

View file

@ -171,11 +171,12 @@
return a return a
}) })
this.$http.post(window.location.pathname + 'config', storeConfig) this.$http.post(window.location.pathname + 'config', storeConfig)
.then(response => {}) .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(() => {
})
}) })
}, },
addAlarm() { addAlarm() {
@ -201,4 +202,4 @@
</script> </script>
</body> </body>
</html> </html>