From f136b80b8af062c1ca7bdd8c4a00d19468434af5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20=C3=87etin?= <92744169+mehmetcetin01140@users.noreply.github.com> Date: Fri, 8 Mar 2024 13:19:36 +0300 Subject: [PATCH] fixed #5394 | replace isIntegerOnly with integerOnly --- components/lib/inputotp/InputOtp.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/inputotp/InputOtp.vue b/components/lib/inputotp/InputOtp.vue index 7a390d6df..62bcc0e07 100755 --- a/components/lib/inputotp/InputOtp.vue +++ b/components/lib/inputotp/InputOtp.vue @@ -177,7 +177,7 @@ export default { if (paste.length) { let pastedCode = paste.substring(0, this.length + 1); - if (!this.isIntegerOnly || !isNaN(pastedCode)) { + if (!this.integerOnly || !isNaN(pastedCode)) { this.tokens = pastedCode.split(''); this.updateModel(event); }