mirror of
https://github.com/Readarr/Readarr
synced 2025-12-24 01:03:32 +01:00
Fixed: UI hiding search results with duplicate GUIDs
(cherry picked from commit 458c5cd0b3c8efe6fc7cd852c357138468f8446e)
This commit is contained in:
parent
28f055e838
commit
a1d4b3a0cf
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ function InteractiveSearch(props) {
|
|||
items.map((item) => {
|
||||
return (
|
||||
<InteractiveSearchRow
|
||||
key={item.guid}
|
||||
key={`${item.indexerId}-${item.guid}`}
|
||||
{...item}
|
||||
searchPayload={searchPayload}
|
||||
longDateFormat={longDateFormat}
|
||||
|
|
|
|||
Loading…
Reference in a new issue