Skip to content

Commit

Permalink
fix(html): add k-filterable class to header cell with column menu in …
Browse files Browse the repository at this point in the history
…Grid
  • Loading branch information
TeyaVes committed Nov 15, 2024
1 parent 9942242 commit c1aba56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/html/src/grid/grid-header-cell.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const GridHeaderCell = (
props.className,
GRIDHEADERCELL_CLASSNAME,
{
[`k-filterable`]: menu && filterable || menu === "filter",
[`k-filterable`]: menu || filterable,
[`k-sorted`]: sortable,
[`k-grid-header-sticky`]: sticky,
[`k-grid-draggable-header`]: draggable,
Expand Down

0 comments on commit c1aba56

Please sign in to comment.