fixed loading flag

This commit is contained in:
Ralf Bauer 2023-06-13 20:51:55 +02:00
parent 3710591edd
commit ec788d6a30
2 changed files with 1 additions and 1 deletions

View File

@ -488,12 +488,12 @@ export default defineComponent({
.then((response) => handleResponse(response, this.$emitter, this.$router))
.then((data) => {
this.liveData = data;
this.dataLoading = false;
fetch("/api/database", { headers: authHeader() })
.then((response) => handleResponse(response, this.$emitter, this.$router))
.then((data) => {
this.dataBase.values = data;
this.dataBase.valid_data = true;
this.dataLoading = false;
});
});
},

Binary file not shown.