Fix drag selection on table make rows bigger (#12096)

Fixes [#12036](https://github.com/twentyhq/twenty/issues/12036)
This commit is contained in:
Raphaël Bosi
2025-05-16 17:15:24 +02:00
committed by GitHub
parent 6554947671
commit 455615b14c

View File

@ -14,8 +14,6 @@ const StyledTableWithPointerEvents = styled(StyledTable)<{
& > * {
pointer-events: ${({ isDragging }) => (isDragging ? 'none' : 'auto')};
}
min-height: ${({ isDragging }) => (isDragging ? '100%' : 'auto')};
height: ${({ isDragging }) => (isDragging ? '100%' : 'auto')};
`;
export interface RecordTableContentProps {