diff --git a/web/core/components/project-states/state-item.tsx b/web/core/components/project-states/state-item.tsx index d955a10b524..a29d5efbceb 100644 --- a/web/core/components/project-states/state-item.tsx +++ b/web/core/components/project-states/state-item.tsx @@ -67,7 +67,7 @@ export const StateItem: FC = observer((props) => { getInitialData: () => initialData, onDragStart: () => setIsDragging(true), onDrop: () => setIsDragging(false), - canDrag: () => isDraggable, + canDrag: () => isDraggable && !disabled, }), dropTargetForElements({ element: elementRef,