From 2944dc4f0aaede16f81e97fa4948b6974223a602 Mon Sep 17 00:00:00 2001 From: Matheus Sabino Date: Sat, 2 May 2020 17:44:42 -0300 Subject: [PATCH] fix: Fix droppable column height sizing (#339) --- src/components/Board/components/Column/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Board/components/Column/index.js b/src/components/Board/components/Column/index.js index f965dd37..5ad6125b 100644 --- a/src/components/Board/components/Column/index.js +++ b/src/components/Board/components/Column/index.js @@ -6,7 +6,7 @@ import CardAdder from './components/CardAdder' import { pickPropOut } from '@services/utils' const ColumnEmptyPlaceholder = React.forwardRef((props, ref) => ( -
+
)) const DroppableColumn = withDroppable(ColumnEmptyPlaceholder) @@ -32,6 +32,7 @@ function Column({ {...draggablePropsWithoutStyle} style={{ height: '100%', + minHeight: '28px', display: 'inline-block', verticalAlign: 'top', ...columnProvided.draggableProps.style