Skip to content

Commit

Permalink
Fixed #15195 - InputOtp | integerOnly= true => no response to the num…
Browse files Browse the repository at this point in the history
…eric keypad
  • Loading branch information
mehmetcetin01140 committed Mar 29, 2024
1 parent 1709e41 commit 1c347bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/inputotp/inputotp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 1c347bc

Please sign in to comment.