From 0e4b06c0dee01259c9bd372e817476a3d1eb95b3 Mon Sep 17 00:00:00 2001 From: NickIliev Date: Wed, 29 Jan 2020 16:30:22 +0200 Subject: [PATCH] fix: remove the passowrd for TextField as well --- nativescript-core/ui/text-field/text-field.android.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nativescript-core/ui/text-field/text-field.android.ts b/nativescript-core/ui/text-field/text-field.android.ts index bd8afa4b7c..880dbdecee 100644 --- a/nativescript-core/ui/text-field/text-field.android.ts +++ b/nativescript-core/ui/text-field/text-field.android.ts @@ -78,7 +78,7 @@ export class TextField extends TextFieldBase { inputType = android.text.InputType.TYPE_CLASS_TEXT | android.text.InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS; break; case "integer": - inputType = android.text.InputType.TYPE_CLASS_NUMBER | android.text.InputType.TYPE_NUMBER_VARIATION_PASSWORD; + inputType = android.text.InputType.TYPE_CLASS_NUMBER; break; default: break;