Compare commits

...

1 commit

Author SHA1 Message Date
Mattermost Build
6cc87dacc6
MM-56933 - password dont disable autocomplete (#8057) (#8090)
Some checks failed
github-release / test (push) Has been cancelled
github-release / build-ios-unsigned (push) Has been cancelled
github-release / build-android-unsigned (push) Has been cancelled
github-release / release (push) Has been cancelled
(cherry picked from commit d02e39b1f3)

Co-authored-by: Pablo Vélez <pablovv2016@gmail.com>
2024-07-15 09:40:23 -04:00

View file

@ -331,7 +331,7 @@ const LoginForm = ({config, extra, serverDisplayName, launchError, launchType, l
disableFullscreenUI={true}
enablesReturnKeyAutomatically={true}
error={error}
keyboardType='default'
keyboardType={isPasswordVisible ? 'visible-password' : 'default'}
label={intl.formatMessage({id: 'login.password', defaultMessage: 'Password'})}
onChangeText={onPasswordChange}
onSubmitEditing={onLogin}