Removing autocomplete in inputs

This commit is contained in:
apanizo 2018-09-25 16:50:16 +02:00
parent 2af0c2d3ef
commit 9c235ea12a
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class TextField extends React.PureComponent<TextFieldProps> {
const underline = meta.active || (meta.visited && !meta.valid)
const inputRoot = helperText ? classes.root : undefined
const inputProps = { ...restInput, autoComplete: 'false' }
const inputProps = { ...restInput, autoComplete: 'off' }
const inputRootProps = { disableUnderline: !underline, className: inputRoot }
return (