Fixed: UI hiding search results with duplicate GUIDs

(cherry picked from commit 458c5cd0b3c8efe6fc7cd852c357138468f8446e)
This commit is contained in:
Mark McDowall 2022-04-23 21:08:35 -07:00 committed by Qstick
parent c9b93c19de
commit aee3d23725

View file

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