mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-07 21:42:16 -07:00
Fixed: UI hiding search results with duplicate GUIDs
(cherry picked from commit 458c5cd0b3c8efe6fc7cd852c357138468f8446e)
This commit is contained in:
parent
c9b93c19de
commit
aee3d23725
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ function InteractiveSearch(props) {
|
||||||
items.map((item) => {
|
items.map((item) => {
|
||||||
return (
|
return (
|
||||||
<InteractiveSearchRow
|
<InteractiveSearchRow
|
||||||
key={item.guid}
|
key={`${item.indexerId}-${item.guid}`}
|
||||||
{...item}
|
{...item}
|
||||||
searchPayload={searchPayload}
|
searchPayload={searchPayload}
|
||||||
longDateFormat={longDateFormat}
|
longDateFormat={longDateFormat}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue