mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
New: Make monitoring existing albums on an import list optional
(cherry picked from commit b05bd685bc1bbd04d4b25b83a9fdd4ab3c4651ee) (cherry picked from commit efa7465666e89e18b757585dd509fd039428156c)
This commit is contained in:
parent
94499b4ae0
commit
926a921240
6 changed files with 43 additions and 4 deletions
|
@ -75,6 +75,7 @@ function EditImportListModalContent(props) {
|
|||
name,
|
||||
enableAutomaticAdd,
|
||||
shouldMonitor,
|
||||
shouldMonitorExisting,
|
||||
shouldSearch,
|
||||
rootFolderPath,
|
||||
monitorNewItems,
|
||||
|
@ -173,12 +174,28 @@ function EditImportListModalContent(props) {
|
|||
</FormGroup>
|
||||
|
||||
<FormGroup>
|
||||
<FormLabel>Search for New Items</FormLabel>
|
||||
<FormLabel>
|
||||
{translate('ShouldMonitorExisting')}
|
||||
</FormLabel>
|
||||
|
||||
<FormInputGroup
|
||||
type={inputTypes.CHECK}
|
||||
name="shouldMonitorExisting"
|
||||
helpText={translate('ShouldMonitorExistingHelpText')}
|
||||
{...shouldMonitorExisting}
|
||||
onChange={onInputChange}
|
||||
/>
|
||||
</FormGroup>
|
||||
|
||||
<FormGroup>
|
||||
<FormLabel>
|
||||
{translate('ShouldSearch')}
|
||||
</FormLabel>
|
||||
|
||||
<FormInputGroup
|
||||
type={inputTypes.CHECK}
|
||||
name="shouldSearch"
|
||||
helpText={'Search indexers for newly added items. Use with caution for large lists.'}
|
||||
helpText={translate('ShouldSearchHelpText')}
|
||||
{...shouldSearch}
|
||||
onChange={onInputChange}
|
||||
/>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue