diff --git a/src/app/components/inputotp/inputotp.ts b/src/app/components/inputotp/inputotp.ts index 698e9d34b37..5d76f5baed8 100644 --- a/src/app/components/inputotp/inputotp.ts +++ b/src/app/components/inputotp/inputotp.ts @@ -326,7 +326,7 @@ export class InputOtp implements AfterContentInit { if (paste.length) { let pastedCode = paste.substring(0, this.length); - + if (!this.integerOnly || !isNaN(pastedCode)) { this.tokens = pastedCode.split(''); this.updateModel(event);