mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-25 06:47:09 -04:00
Indexer Priority ESLint fixes
This commit is contained in:
parent
cd97eb3fa6
commit
ae1881a68c
3 changed files with 9 additions and 6 deletions
|
@ -134,7 +134,8 @@ function EditIndexerModalContent(props) {
|
||||||
}
|
}
|
||||||
<FormGroup
|
<FormGroup
|
||||||
advancedSettings={advancedSettings}
|
advancedSettings={advancedSettings}
|
||||||
isAdvanced={true}>
|
isAdvanced={true}
|
||||||
|
>
|
||||||
<FormLabel>Indexer Priority</FormLabel>
|
<FormLabel>Indexer Priority</FormLabel>
|
||||||
|
|
||||||
<FormInputGroup
|
<FormInputGroup
|
||||||
|
|
|
@ -156,11 +156,13 @@ class Indexer extends Component {
|
||||||
Indexer.propTypes = {
|
Indexer.propTypes = {
|
||||||
id: PropTypes.number.isRequired,
|
id: PropTypes.number.isRequired,
|
||||||
name: PropTypes.string.isRequired,
|
name: PropTypes.string.isRequired,
|
||||||
|
priority: PropTypes.number.isRequired,
|
||||||
enableRss: PropTypes.bool.isRequired,
|
enableRss: PropTypes.bool.isRequired,
|
||||||
enableAutomaticSearch: PropTypes.bool.isRequired,
|
enableAutomaticSearch: PropTypes.bool.isRequired,
|
||||||
enableInteractiveSearch: PropTypes.bool.isRequired,
|
enableInteractiveSearch: PropTypes.bool.isRequired,
|
||||||
supportsRss: PropTypes.bool.isRequired,
|
supportsRss: PropTypes.bool.isRequired,
|
||||||
supportsSearch: PropTypes.bool.isRequired,
|
supportsSearch: PropTypes.bool.isRequired,
|
||||||
|
showPriority: PropTypes.bool.isRequired,
|
||||||
onCloneIndexerPress: PropTypes.func.isRequired,
|
onCloneIndexerPress: PropTypes.func.isRequired,
|
||||||
onConfirmDeleteIndexer: PropTypes.func.isRequired
|
onConfirmDeleteIndexer: PropTypes.func.isRequired
|
||||||
};
|
};
|
||||||
|
|
|
@ -63,7 +63,7 @@ class Indexers extends Component {
|
||||||
isEditIndexerModalOpen
|
isEditIndexerModalOpen
|
||||||
} = this.state;
|
} = this.state;
|
||||||
|
|
||||||
const showPriority = items.some((index) => index.priority != 25);
|
const showPriority = items.some((index) => index.priority !== 25);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<FieldSet legend="Indexers">
|
<FieldSet legend="Indexers">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue