Fixed: UI hiding search results with duplicate GUIDs

Closes #4994
pull/5002/head
Mark McDowall 2 years ago
parent c93f63cd20
commit 458c5cd0b3

@ -175,7 +175,7 @@ function InteractiveSearch(props) {
items.map((item) => {
return (
<InteractiveSearchRow
key={item.guid}
key={`${item.indexerId}-${item.guid}`}
{...item}
searchPayload={searchPayload}
longDateFormat={longDateFormat}

Loading…
Cancel
Save