Merge pull request #2035 from DingWentao1234/hotfix/fix-code-style

修正代码风格
pull/3171/head
baiyaaaaa 2016-12-28 14:21:00 +08:00 committed by GitHub
commit c968525da9
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@
if (this.maxDisabled) return;
const value = this.value || 0;
if (this.accAdd(value, this.step) > this.max || this.disabled) return;
this.currentValue = this.accAdd(this.step, value);
this.currentValue = this.accAdd(value, this.step);
},
decrease() {
if (this.minDisabled) return;