From 455615b14ce42eb75348aef12761f064da51732a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?= <71827178+bosiraphael@users.noreply.github.com> Date: Fri, 16 May 2025 17:15:24 +0200 Subject: [PATCH] Fix drag selection on table make rows bigger (#12096) Fixes [#12036](https://github.com/twentyhq/twenty/issues/12036) --- .../record-table/components/RecordTableContent.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/twenty-front/src/modules/object-record/record-table/components/RecordTableContent.tsx b/packages/twenty-front/src/modules/object-record/record-table/components/RecordTableContent.tsx index 00884c19b..4d96d0537 100644 --- a/packages/twenty-front/src/modules/object-record/record-table/components/RecordTableContent.tsx +++ b/packages/twenty-front/src/modules/object-record/record-table/components/RecordTableContent.tsx @@ -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 {