mirror of
https://github.com/Sonarr/Sonarr
synced 2025-03-10 06:03:32 +00:00
Fixed Import List CleanLibraryLevel Options
This commit is contained in:
parent
f1cfef19b2
commit
17aab235a5
1 changed files with 24 additions and 4 deletions
|
@ -20,10 +20,30 @@ import translate from 'Utilities/String/translate';
|
|||
|
||||
const SECTION = 'importListOptions';
|
||||
const cleanLibraryLevelOptions = [
|
||||
{ key: 'disabled', value: () => translate('Disabled') },
|
||||
{ key: 'logOnly', value: () => translate('LogOnly') },
|
||||
{ key: 'keepAndUnmonitor', value: () => translate('KeepAndUnmonitorSeries') },
|
||||
{ key: 'keepAndTag', value: () => translate('KeepAndTagSeries') },
|
||||
{
|
||||
key: 'disabled',
|
||||
get value() {
|
||||
return translate('Disabled');
|
||||
},
|
||||
},
|
||||
{
|
||||
key: 'logOnly',
|
||||
get value() {
|
||||
return translate('LogOnly');
|
||||
},
|
||||
},
|
||||
{
|
||||
key: 'keepAndUnmonitor',
|
||||
get value() {
|
||||
return translate('KeepAndUnmonitorSeries');
|
||||
},
|
||||
},
|
||||
{
|
||||
key: 'keepAndTag',
|
||||
get value() {
|
||||
return translate('KeepAndTagSeries');
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
interface ImportListOptionsProps {
|
||||
|
|
Loading…
Add table
Reference in a new issue