mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
Ability to edit restriction terms in Release Profiles
(cherry picked from commit dab6242ff28a603f2f15818c1c86567137ed0089) Closes #1684
This commit is contained in:
parent
fcd9fb592d
commit
1191371bc7
1 changed files with 4 additions and 2 deletions
|
@ -65,13 +65,14 @@ function EditReleaseProfileModalContent(props) {
|
||||||
</FormLabel>
|
</FormLabel>
|
||||||
|
|
||||||
<FormInputGroup
|
<FormInputGroup
|
||||||
|
{...required}
|
||||||
type={inputTypes.TEXT_TAG}
|
type={inputTypes.TEXT_TAG}
|
||||||
name="required"
|
name="required"
|
||||||
helpText={translate('RequiredHelpText')}
|
helpText={translate('RequiredHelpText')}
|
||||||
kind={kinds.SUCCESS}
|
kind={kinds.SUCCESS}
|
||||||
placeholder={translate('RequiredPlaceHolder')}
|
placeholder={translate('RequiredPlaceHolder')}
|
||||||
delimiters={tagInputDelimiters}
|
delimiters={tagInputDelimiters}
|
||||||
{...required}
|
canEdit={true}
|
||||||
onChange={onInputChange}
|
onChange={onInputChange}
|
||||||
/>
|
/>
|
||||||
</FormGroup>
|
</FormGroup>
|
||||||
|
@ -82,13 +83,14 @@ function EditReleaseProfileModalContent(props) {
|
||||||
</FormLabel>
|
</FormLabel>
|
||||||
|
|
||||||
<FormInputGroup
|
<FormInputGroup
|
||||||
|
{...ignored}
|
||||||
type={inputTypes.TEXT_TAG}
|
type={inputTypes.TEXT_TAG}
|
||||||
name="ignored"
|
name="ignored"
|
||||||
helpText={translate('IgnoredHelpText')}
|
helpText={translate('IgnoredHelpText')}
|
||||||
kind={kinds.DANGER}
|
kind={kinds.DANGER}
|
||||||
placeholder={translate('IgnoredPlaceHolder')}
|
placeholder={translate('IgnoredPlaceHolder')}
|
||||||
delimiters={tagInputDelimiters}
|
delimiters={tagInputDelimiters}
|
||||||
{...ignored}
|
canEdit={true}
|
||||||
onChange={onInputChange}
|
onChange={onInputChange}
|
||||||
/>
|
/>
|
||||||
</FormGroup>
|
</FormGroup>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue