mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-23 22:17:15 -04:00
Fixed: UI hiding search results with duplicate GUIDs
Closes #7241 Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
4ac1aeaf06
commit
4db6688fe0
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ function InteractiveSearchContent(props) {
|
|||
items.map((item) => {
|
||||
return (
|
||||
<InteractiveSearchRowConnector
|
||||
key={item.guid}
|
||||
key={`${item.indexerId}-${item.guid}`}
|
||||
{...item}
|
||||
searchPayload={searchPayload}
|
||||
longDateFormat={longDateFormat}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue