From ec00697d310fefb71211863ee158a2082632f1a8 Mon Sep 17 00:00:00 2001 From: Dave Richer Date: Thu, 23 May 2024 16:23:47 -0400 Subject: [PATCH] - Fixed bug where Lane draggable no longer worked. Signed-off-by: Dave Richer --- .../src/components/trello-board/controllers/BoardContainer.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/trello-board/controllers/BoardContainer.jsx b/client/src/components/trello-board/controllers/BoardContainer.jsx index 746c3fd81..6c70e6945 100644 --- a/client/src/components/trello-board/controllers/BoardContainer.jsx +++ b/client/src/components/trello-board/controllers/BoardContainer.jsx @@ -271,7 +271,7 @@ const BoardContainer = ({ {...passThroughProps} /> ); - return draggable && laneDraggable ? {laneToRender} : laneToRender; + return draggable || laneDraggable ? {laneToRender} : laneToRender; })}