pull/7320/head
tugcekucukoglu 2025-02-25 11:06:54 +03:00
parent 4991b82e00
commit f059452da6
1 changed files with 1 additions and 1 deletions

View File

@ -580,7 +580,7 @@ export default {
return false;
},
isDecimalSign(char) {
if (this.locale.includes('fr') && ['.', ','].includes(char) || this._decimal.test(char)) {
if ((this.locale?.includes('fr') && ['.', ','].includes(char)) || this._decimal.test(char)) {
this._decimal.lastIndex = 0;
return true;