mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-20 13:06:57 +00: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>
|
||||
|
||||
<FormInputGroup
|
||||
{...required}
|
||||
type={inputTypes.TEXT_TAG}
|
||||
name="required"
|
||||
helpText={translate('RequiredHelpText')}
|
||||
kind={kinds.SUCCESS}
|
||||
placeholder={translate('RequiredPlaceHolder')}
|
||||
delimiters={tagInputDelimiters}
|
||||
{...required}
|
||||
canEdit={true}
|
||||
onChange={onInputChange}
|
||||
/>
|
||||
</FormGroup>
|
||||
|
@ -82,13 +83,14 @@ function EditReleaseProfileModalContent(props) {
|
|||
</FormLabel>
|
||||
|
||||
<FormInputGroup
|
||||
{...ignored}
|
||||
type={inputTypes.TEXT_TAG}
|
||||
name="ignored"
|
||||
helpText={translate('IgnoredHelpText')}
|
||||
kind={kinds.DANGER}
|
||||
placeholder={translate('IgnoredPlaceHolder')}
|
||||
delimiters={tagInputDelimiters}
|
||||
{...ignored}
|
||||
canEdit={true}
|
||||
onChange={onInputChange}
|
||||
/>
|
||||
</FormGroup>
|
||||
|
|
Loading…
Reference in a new issue