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:
ta264 2022-07-25 21:17:21 +01:00
commit 926a921240
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}
/>