pull/1478/head
mertsincan 2021-08-26 10:15:38 +03:00
parent 26eba9e055
commit 730503bea7
1 changed files with 1 additions and 1 deletions

View File

@ -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;