Skip to content

Commit

Permalink
Merge pull request #7261 from ZolanPro/fix/InputNumberClearTimeout
Browse files Browse the repository at this point in the history
Fix InputNumber clearTimer: clearInterval -> clearTimeout
  • Loading branch information
tugcekucukoglu authored Feb 19, 2025
2 parents df126fa + 049d89e commit 99559fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/primevue/src/inputnumber/InputNumber.vue
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,7 @@ export default {
},
clearTimer() {
if (this.timer) {
clearInterval(this.timer);
clearTimeout(this.timer);
}
},
maxBoundry() {
Expand Down

0 comments on commit 99559fe

Please sign in to comment.