fix(mobile): fix page scrolling issue

This commit is contained in:
Zeke Zhang 2024-11-28 16:03:52 +08:00
parent bd5826d02e
commit eef3d183b0

View File

@ -121,7 +121,7 @@ export const SortableItem: React.FC<SortableItemProps> = React.memo((props) => {
return React.createElement( return React.createElement(
component || 'div', component || 'div',
_.omit(others, ['children', 'schema', 'overStyle', 'style', 'openMode', 'id', 'eid', 'removeParentsIfNoChildren']), _.omit(others, ['children', 'schema', 'overStyle', 'openMode', 'id', 'eid', 'removeParentsIfNoChildren']),
props.children, props.children,
); );
}); });