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