Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
Ensured column header cells were not selectable or resizable while hi…
Browse files Browse the repository at this point in the history
…dden.
  • Loading branch information
cm9361 committed Oct 21, 2023
1 parent 48195cf commit 7b8ecab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/terra-table/src/subcomponents/ColumnHeader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ const ColumnHeader = (props) => {
minimumWidth={column.minimumWidth}
maximumWidth={column.maximumWidth}
headerHeight={headerHeight}
isResizable={column.isResizable}
isSelectable={column.isSelectable}
isResizable={hasColumnHeaders && column.isResizable}
isSelectable={hasColumnHeaders && column.isSelectable}
tableHeight={tableHeight}
hasError={column.hasError}
sortIndicator={column.sortIndicator}
Expand Down

0 comments on commit 7b8ecab

Please sign in to comment.