1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

Lazy Loading fuse-worker and fixed some potential timing issues when it's slow. Also keep last result while typing.

This commit is contained in:
Taloth Saldono
2020-06-09 21:27:07 +02:00
parent 4559eed0ec
commit 1e98002b8f
4 changed files with 112 additions and 40 deletions
@@ -17,7 +17,7 @@ function SeriesSearchResult(props) {
let alternateTitle = null;
let tag = null;
if (match.key === 'alternateTitles.cleanTitle') {
if (match.key === 'alternateTitles.title') {
alternateTitle = alternateTitles[match.arrayIndex];
} else if (match.key === 'tags.label') {
tag = tags[match.arrayIndex];