setup wizard fix

This commit is contained in:
Čarodej
2022-06-06 07:57:37 +02:00
parent d521b237a3
commit 16db8d3512
4 changed files with 7 additions and 9 deletions

View File

@@ -256,7 +256,7 @@ export default {
axios
.get('/api/ping')
.then((response) => {
this.apiRunning = response.data === 'pong'
this.apiRunning = response.data.message === 'pong'
})
.catch(() => {
this.apiRunning = false