1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

enabled and indexerId placeholder

This commit is contained in:
Jacob
2019-06-10 23:33:13 -05:00
committed by Taloth Saldono
parent 31cff12e43
commit 5cb1896af0
3 changed files with 39 additions and 29 deletions
@@ -30,7 +30,7 @@ function EditReleaseProfileModalContent(props) {
const {
id,
enableProfile,
enabled,
required,
ignored,
preferred,
@@ -52,9 +52,9 @@ function EditReleaseProfileModalContent(props) {
<FormInputGroup
type={inputTypes.CHECK}
name="enableProfile"
name="enabled"
helpText="Check to enable release profile"
{...enableProfile}
{...enabled}
onChange={onInputChange}
/>
</FormGroup>
@@ -8,10 +8,12 @@ import { setReleaseProfileValue, saveReleaseProfile } from 'Store/Actions/settin
import EditReleaseProfileModalContent from './EditReleaseProfileModalContent';
const newReleaseProfile = {
enabled: false,
required: '',
ignored: '',
preferred: [],
includePreferredWhenRenaming: false,
indexer: 0,
tags: []
};