Fixed Import List CleanLibraryLevel Options

pull/7640/head
Mark McDowall 2 months ago
parent 0e1474579a
commit 6dc16f3ddd
No known key found for this signature in database

@ -20,10 +20,30 @@ import translate from 'Utilities/String/translate';
const SECTION = 'importListOptions'; const SECTION = 'importListOptions';
const cleanLibraryLevelOptions = [ const cleanLibraryLevelOptions = [
{ key: 'disabled', value: () => translate('Disabled') }, {
{ key: 'logOnly', value: () => translate('LogOnly') }, key: 'disabled',
{ key: 'keepAndUnmonitor', value: () => translate('KeepAndUnmonitorSeries') }, get value() {
{ key: 'keepAndTag', value: () => translate('KeepAndTagSeries') }, 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 { interface ImportListOptionsProps {

Loading…
Cancel
Save