Skip to content

Commit

Permalink
Fix #4431: HeaderCell fixes based on previous refactor (#4830)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Aug 25, 2023
1 parent 701259d commit 266f813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/datatable/HeaderCell.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ export const HeaderCell = React.memo((props) => {
const header = createHeader(sortMeta);
const headerCellProps = mergeProps(
{
className: cx('headerCell', { headerProps: props, frozen, sortMeta, align, _isSortableDisabled, getColumnProp }),
className: cx('headerCell', { props: getColumnProps(), frozen, sortMeta, align, _isSortableDisabled }),
style,
role: 'columnheader',
onClick: (e) => onClick(e),
Expand Down

0 comments on commit 266f813

Please sign in to comment.