From 1c347bcc172d268b68477df5d7decb615f8f997d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20=C3=87etin?= <92744169+mehmetcetin01140@users.noreply.github.com> Date: Fri, 29 Mar 2024 11:58:14 +0300 Subject: [PATCH] Fixed #15195 - InputOtp | integerOnly= true => no response to the numeric keypad --- src/app/components/inputotp/inputotp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/inputotp/inputotp.ts b/src/app/components/inputotp/inputotp.ts index a1a58a3394f..058aca59fa5 100644 --- a/src/app/components/inputotp/inputotp.ts +++ b/src/app/components/inputotp/inputotp.ts @@ -126,7 +126,7 @@ export class InputOtp implements AfterContentInit { value: any; get inputMode(): string { - return this.integerOnly ? 'number' : 'text'; + return this.integerOnly ? 'numeric' : 'text'; } get inputType(): string {