Merge pull request #5003 from wormwlrm/issue-5002
Fix #5002: Cannot set a Slider with InputNumber value as 0 by using InputNumber
This commit is contained in:
commit
4c006ad7ad
1 changed files with 1 additions and 1 deletions
|
@ -379,7 +379,7 @@
|
|||
},
|
||||
|
||||
handleInputChange (val) {
|
||||
this.currentValue = [val || this.min, this.currentValue[1]];
|
||||
this.currentValue = [val === 0 ? 0 : val || this.min, this.currentValue[1]];
|
||||
this.emitChange();
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue