Fix exclusion pattern inputs blurring on every keypress (#1952)

* Replace ExclusionPatterns with StringListInput
This commit is contained in:
WithoutPants
2021-11-05 11:52:00 +11:00
committed by GitHub
parent 3671388b8d
commit 392b28915a
5 changed files with 22 additions and 69 deletions

View File

@@ -33,7 +33,7 @@ export const StringListInput: React.FC<IStringListInputProps> = (props) => {
return (
<>
<div className={props.errors && "is-invalid"}>
<div className={`string-list-input ${props.errors ? "is-invalid" : ""}`}>
{props.value && props.value.length > 0 && (
<Form.Group>
{props.value &&