Fixed: Issue searching for series in the UI when tag is removed

This commit is contained in:
Mark McDowall 2019-06-15 10:09:21 -07:00
parent 394932b57f
commit c4c9f0e368
1 changed files with 9 additions and 3 deletions

View File

@ -28,9 +28,15 @@ function createCleanSeriesSelector() {
images,
alternateTitles,
firstCharacter: title.charAt(0).toLowerCase(),
tags: tags.map((id) => {
return allTags.find((tag) => tag.id === id);
})
tags: tags.reduce((acc, id) => {
const matchingTag = allTags.find((tag) => tag.id === id);
if (matchingTag) {
acc.push(matchingTag);
}
return acc;
}, [])
};
});
}