1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-23 22:25:56 -04:00

Fixed: UI hiding search results with duplicate GUIDs

Closes #4994
This commit is contained in:
Mark McDowall
2022-04-23 21:08:35 -07:00
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}