Skip to content

Commit

Permalink
Fix #4626: ColumnFilter in row mode all custom icons (#4638)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Jul 10, 2023
1 parent d5cc907 commit 1324379
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions components/lib/datatable/TableHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,14 @@ export const TableHeader = React.memo((props) => {
<ColumnFilter
display="row"
column={column}
filterClearIcon={props.filterClearIcon}
filterIcon={props.filterIcon}
filters={props.filters}
filtersStore={props.filtersStore}
onFilterChange={props.onFilterChange}
metaData={props.metaData}
onFilterApply={props.onFilterApply}
onFilterChange={props.onFilterChange}
ptCallbacks={props.ptCallbacks}
metaData={props.metaData}
/>
);
}
Expand Down
2 changes: 1 addition & 1 deletion components/lib/tag/TagBase.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ComponentBase } from '../componentbase/ComponentBase';
import { classNames } from '../utils/utils';
import { classNames } from '../utils/Utils';

export const TagBase = ComponentBase.extend({
defaultProps: {
Expand Down

0 comments on commit 1324379

Please sign in to comment.