pull/5617/head
tugcekucukoglu 2024-04-19 11:51:31 +03:00
parent 8523ff27f2
commit 478885be0f
1 changed files with 1 additions and 1 deletions

View File

@ -535,7 +535,7 @@ export default {
const isDecimalSign = this.isDecimalSign(char);
const isMinusSign = this.isMinusSign(char);
if (['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'].includes(char) || isMinusSign || isDecimalSign) {
if ((Number(char) >= 0 && Number(char) <= 9) || isMinusSign || isDecimalSign) {
this.insert(event, char, { isDecimalSign, isMinusSign });
}