Skip to content

Commit 0b50f3e

Browse files
authored
fix: remove the passowrd for TextField as well (#8290)
1 parent e293367 commit 0b50f3e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nativescript-core/ui/text-field/text-field.android.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class TextField extends TextFieldBase {
7878
inputType = android.text.InputType.TYPE_CLASS_TEXT | android.text.InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS;
7979
break;
8080
case "integer":
81-
inputType = android.text.InputType.TYPE_CLASS_NUMBER | android.text.InputType.TYPE_NUMBER_VARIATION_PASSWORD;
81+
inputType = android.text.InputType.TYPE_CLASS_NUMBER;
8282
break;
8383
default:
8484
break;

0 commit comments

Comments
 (0)