1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-11-15 01:34:57 +01:00

input fixes: filter out non-HTML props

This commit is contained in:
Matthias Kretschmann 2020-09-21 18:35:07 +00:00
parent fbef95a644
commit 66f9dace6f

View File

@ -6,9 +6,9 @@ import FilesInput from '../../molecules/FormFields/FilesInput'
import Terms from '../../molecules/FormFields/Terms'
import Price from '../../molecules/FormFields/Price'
const DefaultInput = (props: InputProps) => (
const DefaultInput = ({ small, ...props }: InputProps) => (
<input
className={`${styles.input} ${props.small ? styles.small : null}`}
className={`${styles.input} ${small ? styles.small : null}`}
id={props.name}
{...props}
/>
@ -22,6 +22,10 @@ export default function InputElement({
postfix,
small,
field,
label,
help,
form,
additionalComponent,
...props
}: InputProps): ReactElement {
switch (type) {