浏览代码

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

Fixes: https://github.com/jitsi/jitsi-meet/issues/5673
master
Saúl Ibarra Corretgé 5 年前
父节点
当前提交
95a5b8a8c1
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1
    0
      react/features/authentication/components/LoginDialog.native.js

+ 1
- 0
react/features/authentication/components/LoginDialog.native.js 查看文件

171
                         underlineColorAndroid = { FIELD_UNDERLINE }
171
                         underlineColorAndroid = { FIELD_UNDERLINE }
172
                         value = { this.state.username } />
172
                         value = { this.state.username } />
173
                     <TextInput
173
                     <TextInput
174
+                        autoCapitalize = { 'none' }
174
                         onChangeText = { this._onPasswordChange }
175
                         onChangeText = { this._onPasswordChange }
175
                         placeholder = { t('dialog.userPassword') }
176
                         placeholder = { t('dialog.userPassword') }
176
                         placeholderTextColor = { PLACEHOLDER_COLOR }
177
                         placeholderTextColor = { PLACEHOLDER_COLOR }

正在加载...
取消
保存