Skip to content

Commit

Permalink
fix(ui): parent row arrow indicator positioning
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie-rasmussen committed Feb 5, 2025
1 parent 72dcf36 commit 74f28a5
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,14 @@ export const CustomGridTreeDataGroupingCell: FC<
) : (
<Box />
)}
{rowTypeIndicator && <Box>{rowTypeIndicator}</Box>}
</CallOrCountRow>
{rowTypeIndicator && <Box>{rowTypeIndicator}</Box>}
</CursorBox>
);

return tooltip ? <Tooltip content={tooltip} trigger={box} /> : box;
return tooltip ? (
<Tooltip content={tooltip} noTriggerWrap trigger={box} />
) : (
box
);
};

0 comments on commit 74f28a5

Please sign in to comment.