Skip to content

Commit

Permalink
fix: First item hovered on stacked bar (#30628)
Browse files Browse the repository at this point in the history
(cherry picked from commit c8edd1f)
  • Loading branch information
michael-s-molina authored and sadpandajoe committed Oct 16, 2024
1 parent 1074d1e commit 27ca7ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,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 27ca7ba

Please sign in to comment.