We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 705c0b0 commit f56d621Copy full SHA for f56d621
src/common/PasswordInput.js
@@ -45,10 +45,11 @@ export default function PasswordInput(props: Props): Node {
45
46
return (
47
<View>
48
- <Input {...props} secureTextEntry={isHidden} autoCorrect={false} autoCapitalize="none" />
+ <Input {...props} secureTextEntry={isHidden} autoCorrect={false} autoCapitalize="none" type="password"/>
49
<Touchable style={styles.showPasswordButton} onPress={handleShow}>
50
<ZulipTextIntl style={styles.showPasswordButtonText} text={isHidden ? 'show' : 'hide'} />
51
</Touchable>
52
+
53
</View>
54
);
55
}
0 commit comments