File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
superset-frontend/plugins/plugin-chart-table/src Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ import { formatColumnValue } from './utils/formatValue';
89
89
import { PAGE_SIZE_OPTIONS , SERVER_PAGE_SIZE_OPTIONS } from './consts' ;
90
90
import { updateTableOwnState } from './DataTable/utils/externalAPIs' ;
91
91
import getScrollBarSize from './DataTable/utils/getScrollBarSize' ;
92
+ import DateWithFormatter from './utils/DateWithFormatter' ;
92
93
93
94
type ValueRange = [ number , number ] ;
94
95
@@ -934,7 +935,10 @@ export default function TableChart<D extends DataRecord = DataRecord>(
934
935
} ,
935
936
className : [
936
937
className ,
937
- value == null ? 'dt-is-null' : '' ,
938
+ value == null ||
939
+ ( value instanceof DateWithFormatter && value . input == null )
940
+ ? 'dt-is-null'
941
+ : '' ,
938
942
isActiveFilterValue ( key , value ) ? ' dt-is-active-filter' : '' ,
939
943
] . join ( ' ' ) ,
940
944
tabIndex : 0 ,
You can’t perform that action at this time.
0 commit comments