Fix sort in search

This commit is contained in:
Mr. Stallion 2021-01-23 23:02:19 -06:00
parent 60f9100cd2
commit 8c528b5e33
1 changed files with 11 additions and 4 deletions

View File

@ -188,10 +188,7 @@
this.countUpdater?.stop();
}
this.results = (_.filter(
this.results,
(x) => this.isSpeciesMatch(x)
) as SearchResult[]).sort(sort);
this.resort();
}
);
}
@ -231,6 +228,8 @@
// this is done LAST to force Vue to wait with rendering
this.hasReceivedResults = true;
this.results = results;
this.resort(results);
});
if (this.scoreWatcher) {
@ -288,6 +287,14 @@
}
private resort(results = this.results) {
this.results = (_.filter(
results,
(x) => this.isSpeciesMatch(x)
) as SearchResult[]).sort(sort);
}
isSpeciesMatch(result: SearchResult): boolean {
if (this.data.species.length === 0) {
return true;