Merge pull request #8250 from NativeScript/niliev/integer

fix: make integer type visible
This commit is contained in:
Dimitar Topuzov
2020-01-16 11:05:46 +02:00
committed by GitHub

View File

@@ -273,7 +273,7 @@ export abstract class EditableTextBase extends EditableTextBaseCommon {
break;
case "integer":
newInputType = android.text.InputType.TYPE_CLASS_NUMBER | android.text.InputType.TYPE_NUMBER_VARIATION_PASSWORD;
newInputType = android.text.InputType.TYPE_CLASS_NUMBER;
break;
default: