From 6cc87dacc66f73b282b585b6df6fa6aa50eba623 Mon Sep 17 00:00:00 2001 From: Mattermost Build Date: Mon, 15 Jul 2024 16:40:23 +0300 Subject: [PATCH] MM-56933 - password dont disable autocomplete (#8057) (#8090) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit d02e39b1f39424d1281d7c7bab1305f955904b3e) Co-authored-by: Pablo Vélez --- app/screens/login/form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/screens/login/form.tsx b/app/screens/login/form.tsx index ac33fc61d..025d13a48 100644 --- a/app/screens/login/form.tsx +++ b/app/screens/login/form.tsx @@ -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}