From bf48aca4809d81338d67439872eec18c87647777 Mon Sep 17 00:00:00 2001 From: rhgb Date: Tue, 21 Jul 2020 00:27:15 +0800 Subject: [PATCH] fix #1243 (#1246) --- lib/ReactGridLayout.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ReactGridLayout.jsx b/lib/ReactGridLayout.jsx index 1208f9bb0..aaa00eb37 100644 --- a/lib/ReactGridLayout.jsx +++ b/lib/ReactGridLayout.jsx @@ -204,6 +204,7 @@ export default class ReactGridLayout extends React.Component { this.props.children !== nextProps.children || !fastRGLPropsEqual(this.props, nextProps, isEqual) || this.state.activeDrag !== nextState.activeDrag || + this.state.mounted !== nextState.mounted || this.state.droppingPosition !== nextState.droppingPosition ); }