Skip to content

Commit 671bc2c

Browse files
committed
Fixed drag and drop
1 parent 094e63e commit 671bc2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plans/components/PlanItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export const PlanItem = React.memo((props: Props) => {
7676
console.log("ISdragging", isDragging);
7777
props.onDragChange(isDragging);
7878
}}>
79-
<PlanItem key={c.id} planItem={c} setEditPlanItem={props.setEditPlanItem} readOnly={props.readOnly} />
79+
<PlanItem key={c.id} planItem={c} setEditPlanItem={props.setEditPlanItem} readOnly={props.readOnly} showItemDrop={props.showItemDrop} onDragChange={props.onDragChange} onChange={props.onChange} />
8080
</DraggableWrapper>
8181
</>
8282
);

0 commit comments

Comments
 (0)