You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(drag-reorder): expand target column height during cross-column drag
When dragging a card into a different kanban column, the gap/slot
system shifts cards down via translateY but the column's max-height
constraint clips the bottom cards off-screen. The source column
already locks its height to prevent collapse, but the target column
was not expanded to accommodate the incoming card.
The target column and its task container now have their max-height
temporarily increased by the drag gap amount when a card enters.
Both are reset in cleanupDragShift on drag end or container change.
0 commit comments