Frontend: Reset all results after update #309

Signed-off-by: Michael Mayer <michael@liquidbytes.net>
This commit is contained in:
Michael Mayer 2020-06-29 08:27:12 +02:00
parent 6818845462
commit cf773b5714

View file

@ -212,7 +212,7 @@
return Promise.resolve(this.results);
}
if(this.allResults.length > 1 && !this.dirty) {
if(this.allResults.length > 0) {
return Promise.resolve(this.allResults);
}
@ -382,6 +382,8 @@
return
}
this.allResults = [];
const type = ev.split('.')[1];
switch (type) {