Skip to content

Commit

Permalink
fix(InputNumber): formatting of currencies with suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
thielpa committed Jun 21, 2023
1 parent f7531d5 commit 64579b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/inputnumber/InputNumber.vue
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ export default {
this._decimal.lastIndex = 0;
if (this.suffixChar) {
return val1.replace(this.suffixChar, '').split(this._decimal)[0] + val2.replace(this.suffixChar, '').slice(decimalCharIndex) + this.suffixChar;
return decimalCharIndex !== -1 ? val1.replace(this.suffixChar, '').split(this._decimal)[0] + val2.replace(this.suffixChar, '').slice(decimalCharIndex) + this.suffixChar : val1;
} else {
return decimalCharIndex !== -1 ? val1.split(this._decimal)[0] + val2.slice(decimalCharIndex) : val1;
}
Expand Down

0 comments on commit 64579b8

Please sign in to comment.