Skip to content

Commit

Permalink
MM-56933 - password dont disable autocomplete (#8057) (#8090)
Browse files Browse the repository at this point in the history
(cherry picked from commit d02e39b)

Co-authored-by: Pablo Vélez <[email protected]>
  • Loading branch information
mattermost-build and pvev authored Jul 15, 2024
1 parent 333b594 commit 6cc87da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/screens/login/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 6cc87da

Please sign in to comment.