New: Make monitoring existing albums on an import list optional

(cherry picked from commit b05bd685bc1bbd04d4b25b83a9fdd4ab3c4651ee)
This commit is contained in:
ta264 2022-07-18 23:33:41 +01:00
commit 70ae0c931e
6 changed files with 43 additions and 4 deletions

View file

@ -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}
/>