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

pull/3141/head
Mark McDowall 5 years ago
parent 394932b57f
commit c4c9f0e368

@ -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;
}, [])
};
});
}

Loading…
Cancel
Save