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

Commit

Permalink
fix: use increasing z-index for header grid cells (#469)
Browse files Browse the repository at this point in the history
  • Loading branch information
haxxmaxx authored Nov 22, 2023
1 parent f339f3c commit df87a57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pivot-table/components/grids/HeaderGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const HeaderGrid = ({
height: rowHight,
gridColumn: colIndex + 1,
gridRow: rowIndex + 1,
zIndex: Number(!cell.isDim),
zIndex: headersData.size.x - colIndex,
}}
isLastRow={rowIndex === headersData.size.y - 1}
isFirstColumn={colIndex === 0}
Expand Down

0 comments on commit df87a57

Please sign in to comment.