Frontend: Reset all results after update #309
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
This commit is contained in:
parent
6818845462
commit
cf773b5714
1 changed files with 3 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue