mirror of
https://github.com/Sonarr/Sonarr
synced 2026-05-08 04:50:56 +02:00
Lint error changes
This commit is contained in:
parent
a29d681a68
commit
008de06979
3 changed files with 4 additions and 3 deletions
|
|
@ -305,7 +305,7 @@ function EditImportListModalContent({
|
|||
onChange={handleInputChange}
|
||||
/>
|
||||
</FormGroup>
|
||||
|
||||
|
||||
{fields?.length ? (
|
||||
<div>
|
||||
{fields.map((field) => {
|
||||
|
|
|
|||
|
|
@ -112,6 +112,7 @@ function ManageImportListsEditModalContent(
|
|||
break;
|
||||
case 'retroApplyTags':
|
||||
setRetroApplyTags(value as string);
|
||||
break;
|
||||
default:
|
||||
console.warn(`EditImportListModalContent Unknown Input: '${name}'`);
|
||||
}
|
||||
|
|
@ -162,7 +163,7 @@ function ManageImportListsEditModalContent(
|
|||
onChange={onInputChange}
|
||||
/>
|
||||
</FormGroup>
|
||||
|
||||
|
||||
<FormGroup>
|
||||
<FormLabel>{translate('RetroApplyTags')}</FormLabel>
|
||||
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@ function ManageImportListsModalRow(props: ManageImportListsModalRowProps) {
|
|||
<TableRowCell className={styles.tags}>
|
||||
<SeriesTagList tags={tags} />
|
||||
</TableRowCell>
|
||||
|
||||
|
||||
<TableRowCell className={styles.retroApply}>
|
||||
{retroApplyTags ? translate('Yes') : translate('No')}
|
||||
</TableRowCell>
|
||||
|
|
|
|||
Loading…
Reference in a new issue