Disabled autocapitalize on username field in mobile browsers

This commit is contained in:
Jan Kaiser 2021-05-05 12:31:36 +02:00 committed by GitHub
parent c4223224f5
commit b2c48d0d3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -27,6 +27,7 @@ const Form = (props) => {
component={renderInputField}
placeholder={t('username_placeholder')}
autoComplete="username"
autocapitalize="none"
disabled={processing}
validate={[validateRequiredValue]}
/>