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 7275d4a commit bea2b11Copy full SHA for bea2b11
src/react-sortable-tree.tsx
@@ -91,9 +91,10 @@ class ReactSortableTree extends Component {
91
92
// Prepare scroll-on-drag options for this list
93
this.scrollZoneVirtualList = (createScrollingComponent || withScrolling)(
94
- React.forwardRef((props, ref) => (
95
- <Virtuoso ref={this.listRef} {...props} />
96
- ))
+ React.forwardRef((props) => {
+ const { dragDropManager, ...otherProps } = props
+ return <Virtuoso ref={this.listRef} {...otherProps} />
97
+ })
98
)
99
this.vStrength = createVerticalStrength(slideRegionSize)
100
this.hStrength = createHorizontalStrength(slideRegionSize)
0 commit comments