used chunked data transfer

This commit is contained in:
Ralf Bauer 2023-06-13 20:37:19 +02:00
parent 0da01d7019
commit ec66df4549
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((response) => handleResponse(response, this.$emitter, this.$router))
.then((data) => { .then((data) => {
this.liveData = data; this.liveData = data;
this.dataLoading = false;
fetch("/api/database", { headers: authHeader() }) fetch("/api/database", { headers: authHeader() })
.then((response) => handleResponse(response, this.$emitter, this.$router)) .then((response) => handleResponse(response, this.$emitter, this.$router))
.then((data) => { .then((data) => {
this.dataBase.values = data; this.dataBase.values = data;
this.dataBase.valid_data = true; this.dataBase.valid_data = true;
this.dataLoading = false;
}); });
}); });
}, },

Binary file not shown.