mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-10 07:13:47 -07:00
New: Added option to filter Release Profile to a specific indexer
This commit is contained in:
parent
06c79b283c
commit
a035a78a2b
30 changed files with 309 additions and 66 deletions
|
@ -98,7 +98,9 @@ class KeyValueListInput extends Component {
|
|||
className,
|
||||
value,
|
||||
keyPlaceholder,
|
||||
valuePlaceholder
|
||||
valuePlaceholder,
|
||||
hasError,
|
||||
hasWarning
|
||||
} = this.props;
|
||||
|
||||
const { isFocused } = this.state;
|
||||
|
@ -106,7 +108,9 @@ class KeyValueListInput extends Component {
|
|||
return (
|
||||
<div className={classNames(
|
||||
className,
|
||||
isFocused && styles.isFocused
|
||||
isFocused && styles.isFocused,
|
||||
hasError && styles.hasError,
|
||||
hasWarning && styles.hasWarning
|
||||
)}
|
||||
>
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue