rn,auth: don't auto-capitalize the password field

Fixes: https://github.com/jitsi/jitsi-meet/issues/5673
pull/7064/head
Saúl Ibarra Corretgé 5 years ago committed by Saúl Ibarra Corretgé
parent 5867eaf560
commit 95a5b8a8c1
  1. 1
      react/features/authentication/components/LoginDialog.native.js

@ -171,6 +171,7 @@ class LoginDialog extends Component<Props, State> {
underlineColorAndroid = { FIELD_UNDERLINE }
value = { this.state.username } />
<TextInput
autoCapitalize = { 'none' }
onChangeText = { this._onPasswordChange }
placeholder = { t('dialog.userPassword') }
placeholderTextColor = { PLACEHOLDER_COLOR }

Loading…
Cancel
Save