Skip to content

Commit

Permalink
fix: First item hovered on stacked bar (apache#30628)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina authored Oct 16, 2024
1 parent 53a121d commit c8edd1f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ export default function transformProps(
});
if (stack) {
rows.reverse();
if (focusedRow) {
if (focusedRow !== undefined) {
focusedRow = rows.length - focusedRow - 1;
}
}
Expand Down

0 comments on commit c8edd1f

Please sign in to comment.