mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-15 21:14:32 +01:00
Fix duplicate indexers with same name in add modal
This commit is contained in:
parent
73f23d56dc
commit
ea635e685b
1 changed files with 1 additions and 1 deletions
|
|
@ -226,7 +226,7 @@ class AddIndexerModalContent extends Component {
|
|||
{
|
||||
filteredIndexers.map((indexer) => (
|
||||
<SelectIndexerRowConnector
|
||||
key={indexer.name}
|
||||
key={`${indexer.implementation}-${indexer.name}`}
|
||||
implementation={indexer.implementation}
|
||||
{...indexer}
|
||||
onIndexerSelect={onIndexerSelect}
|
||||
|
|
|
|||
Loading…
Reference in a new issue