We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 094e63e commit 671bc2cCopy full SHA for 671bc2c
src/plans/components/PlanItem.tsx
@@ -76,7 +76,7 @@ export const PlanItem = React.memo((props: Props) => {
76
console.log("ISdragging", isDragging);
77
props.onDragChange(isDragging);
78
}}>
79
- <PlanItem key={c.id} planItem={c} setEditPlanItem={props.setEditPlanItem} readOnly={props.readOnly} />
+ <PlanItem key={c.id} planItem={c} setEditPlanItem={props.setEditPlanItem} readOnly={props.readOnly} showItemDrop={props.showItemDrop} onDragChange={props.onDragChange} onChange={props.onChange} />
80
</DraggableWrapper>
81
</>
82
);
0 commit comments