Fix drag selection on table make rows bigger (#12096)
Fixes [#12036](https://github.com/twentyhq/twenty/issues/12036)
This commit is contained in:
@ -14,8 +14,6 @@ const StyledTableWithPointerEvents = styled(StyledTable)<{
|
|||||||
& > * {
|
& > * {
|
||||||
pointer-events: ${({ isDragging }) => (isDragging ? 'none' : 'auto')};
|
pointer-events: ${({ isDragging }) => (isDragging ? 'none' : 'auto')};
|
||||||
}
|
}
|
||||||
min-height: ${({ isDragging }) => (isDragging ? '100%' : 'auto')};
|
|
||||||
height: ${({ isDragging }) => (isDragging ? '100%' : 'auto')};
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export interface RecordTableContentProps {
|
export interface RecordTableContentProps {
|
||||||
|
|||||||
Reference in New Issue
Block a user