From 0b50f3e5d32baf1a6e6f221511353c711cb305cb Mon Sep 17 00:00:00 2001 From: Nick Iliev Date: Thu, 30 Jan 2020 16:34:38 +0200 Subject: [PATCH] fix: remove the passowrd for TextField as well (#8290) --- 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 bd8afa4b7..880dbdece 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;