Fix InputNumber clearTimer: clearInterval -> clearTimeout
parent
439bcd169e
commit
049d89e5a8
|
@ -966,7 +966,7 @@ export default {
|
||||||
},
|
},
|
||||||
clearTimer() {
|
clearTimer() {
|
||||||
if (this.timer) {
|
if (this.timer) {
|
||||||
clearInterval(this.timer);
|
clearTimeout(this.timer);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
maxBoundry() {
|
maxBoundry() {
|
||||||
|
|
Loading…
Reference in New Issue