Disabled autocapitalize on username field in mobile browsers
This commit is contained in:
parent
c4223224f5
commit
b2c48d0d3b
|
@ -27,6 +27,7 @@ const Form = (props) => {
|
|||
component={renderInputField}
|
||||
placeholder={t('username_placeholder')}
|
||||
autoComplete="username"
|
||||
autocapitalize="none"
|
||||
disabled={processing}
|
||||
validate={[validateRequiredValue]}
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue