Skip to content

Commit

Permalink
Refactor #1441 and #1136
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Aug 26, 2021
1 parent 26eba9e commit 730503b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/inputnumber/InputNumber.vue
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ export default {
this.$refs.input.$el.setAttribute('aria-valuenow', value);
},
concatValues(val1, val2) {
if (val1 !== null && val2 !== null) {
if (val1 && val2) {
let decimalCharIndex = val2.search(this._decimal);
this._decimal.lastIndex = 0;
Expand Down

0 comments on commit 730503b

Please sign in to comment.