diff --git a/client/src/components/production-board-kanban/trello-board/controllers/BoardContainer.jsx b/client/src/components/production-board-kanban/trello-board/controllers/BoardContainer.jsx index 3d88755f3..81ce19e2d 100644 --- a/client/src/components/production-board-kanban/trello-board/controllers/BoardContainer.jsx +++ b/client/src/components/production-board-kanban/trello-board/controllers/BoardContainer.jsx @@ -101,7 +101,7 @@ const BoardContainer = ({ async ({ draggableId, type, source, reason, mode, destination, combine }) => { setIsDragging(false); - if (!type || type !== "lane" || !source || !destination) return; + if (!type || type !== "lane" || !source || !destination || isEqual(source, destination)) return; setIsProcessing(true);