Fix InputNumber clearTimer: clearInterval -> clearTimeout

pull/7261/head
ZolanPro 2025-02-16 14:59:13 +01:00
parent 439bcd169e
commit 049d89e5a8
No known key found for this signature in database
GPG Key ID: 21F4C3AE77CDD47D
1 changed files with 1 additions and 1 deletions

View File

@ -966,7 +966,7 @@ export default {
},
clearTimer() {
if (this.timer) {
clearInterval(this.timer);
clearTimeout(this.timer);
}
},
maxBoundry() {