Skip to content

Commit d233f2c

Browse files
author
Sam Bokai
committed
Fix bug in Lane where isDraggingOver was true after dropping card
1 parent 0873274 commit d233f2c

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/components/Lane.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ class Lane extends Component {
137137
onDragEnd = (laneId, result) => {
138138
const {handleDragEnd} = this.props
139139
const {addedIndex, payload} = result
140+
this.setState({isDraggingOver: false})
140141
if (addedIndex != null) {
141142
this.props.actions.moveCardAcrossLanes({
142143
fromLaneId: payload.laneId,

0 commit comments

Comments
 (0)