mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 08:34:28 +01:00
Fixed: (UI) Add New Indexer button to open the Add Indexer modal
Fixes #1625 Closes #1389
This commit is contained in:
parent
f31c0bb1de
commit
b97f6f8ddf
1 changed files with 4 additions and 1 deletions
|
|
@ -295,7 +295,10 @@ const IndexerIndex = withScrollPosition((props: IndexerIndexProps) => {
|
|||
) : null}
|
||||
|
||||
{!error && isPopulated && !items.length ? (
|
||||
<NoIndexer totalItems={totalItems} />
|
||||
<NoIndexer
|
||||
totalItems={totalItems}
|
||||
onAddIndexerPress={onAddIndexerPress}
|
||||
/>
|
||||
) : null}
|
||||
</PageContentBody>
|
||||
{isLoaded && !!jumpBarItems.order.length ? (
|
||||
|
|
|
|||
Loading…
Reference in a new issue