Skip to content

Commit

Permalink
Merge pull request #6182 from Payn/master
Browse files Browse the repository at this point in the history
fix: InputOtp - allow NumpadEnter event
  • Loading branch information
tugcekucukoglu authored Aug 21, 2024
2 parents d30738b + 8b5936c commit 86a29ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/primevue/src/inputotp/InputOtp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ export default {
break;
case 'Enter':
case 'Tab':
case 'NumpadEnter':
case 'Tab':
break;
default:
Expand Down

0 comments on commit 86a29ec

Please sign in to comment.