diff --git a/libs/components/editor-blocks/src/blocks/group/scene-kanban/CardContainer.tsx b/libs/components/editor-blocks/src/blocks/group/scene-kanban/CardContainer.tsx index cd71b72666..5151aaec99 100644 --- a/libs/components/editor-blocks/src/blocks/group/scene-kanban/CardContainer.tsx +++ b/libs/components/editor-blocks/src/blocks/group/scene-kanban/CardContainer.tsx @@ -156,7 +156,13 @@ export const CardContainer = (props: CardContainerProps) => { const { kanban } = useKanban(); const { containerIds, items: dataSource, activeId } = props; return ( - + { + // Fix https://github.com/toeverything/AFFiNE/issues/29 + // Prevent active selection when dragging kanban card + e.stopPropagation(); + }} + > {containerIds.map((containerId, idx) => { const items = dataSource[containerId];