feat: add hdr filtering (#86)

* feat: filter hdr content

* feat: check filter hdr

* feat: improve hdr parse and filter and tests
This commit is contained in:
Ludvig Lundgren 2022-01-16 13:50:21 +01:00 committed by GitHub
parent 67c6bd7b53
commit 284a2f9590
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 284 additions and 22 deletions

View file

@ -19,7 +19,7 @@ const MultiSelect: React.FC<MultiSelectProps> = ({
label,
options,
className,
columns
columns,
}) => (
<div
className={classNames(
@ -49,7 +49,7 @@ const MultiSelect: React.FC<MultiSelectProps> = ({
setFieldValue(field.name, am)
}}
className="dark:bg-gray-700"
className="dark:bg-gray-700 dark"
/>
)}
</Field>