File tree Expand file tree Collapse file tree
packages/devextreme/js/__internal/grids/grid_core Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -72,8 +72,6 @@ const getIntervalSelector = function () {
7272
7373 if ( ! isDefined ( value ) ) {
7474 return null ;
75- } if ( this . dataType === 'number' && value === '' ) {
76- return null ;
7775 } if ( isDateType ( this . dataType ) ) {
7876 const nameIntervalSelector = arguments [ 0 ] ;
7977 return DATE_INTERVAL_SELECTORS [ nameIntervalSelector ] ( value ) ;
@@ -438,8 +436,8 @@ export default {
438436 } else {
439437 result = function ( data ) {
440438 let result = column . calculateCellValue ( data ) ;
441- // Preserve empty strings for number columns to keep blank filter values distinguishable from null/undefined.
442- if ( result === undefined || ( result === '' && column . dataType !== 'number' ) ) {
439+
440+ if ( result === undefined || result === '' ) {
443441 result = null ;
444442 }
445443 return result ;
You can’t perform that action at this time.
0 commit comments