We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 613f659 commit 04cd567Copy full SHA for 04cd567
packages/devextreme/js/__internal/ui/date_box/m_date_box.mask.ts
@@ -314,8 +314,10 @@ class DateBoxMask extends DateBoxBase {
314
}
315
316
_searchString(char) {
317
- // eslint-disable-next-line radix
318
- if (!isNaN(parseInt(this._getActivePartProp('text')))) {
+ const text = this._getActivePartProp('text');
+ const convertedText = numberLocalization.convertDigits(text, true);
319
+
320
+ if (!isNaN(parseInt(convertedText, 10))) {
321
return;
322
323
0 commit comments