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:
Ainar Garipov 2021-05-05 14:11:00 +03:00
commit b3cd33dde1
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]}
/>