diff --git a/src/addons/dragAndDrop/withDragAndDrop.js b/src/addons/dragAndDrop/withDragAndDrop.js index 9830d0e7c..91240c382 100644 --- a/src/addons/dragAndDrop/withDragAndDrop.js +++ b/src/addons/dragAndDrop/withDragAndDrop.js @@ -97,7 +97,7 @@ export default function withDragAndDrop(Calendar) { weekWrapper: WeekWrapper, }) - this.state = {} + this.state = { interacting: false } } getChildContext() { @@ -118,7 +118,7 @@ export default function withDragAndDrop(Calendar) { } handleInteractionStart = () => { - this.setState({ interacting: true }) + if (this.state.interacting === false) this.setState({ interacting: true }) } handleInteractionEnd = interactionInfo => {