-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(list): fix mobile device dragging with nested lists (#9573)
**Related Issue:** #9521 ## Summary - Makes sure that `connectSortableComponent` isn't called during an active drag of a sortable item. - Previously, mutation observers were calling `connectSortableComponent` during a drag - This caused the existing implementation to be destroyed and a new one created which left the user in a frozen state. - This only occurred on mobile devices because mobile devices do not use native drag and drop with Sortable.js - The fix makes sure that `connectSortableComponent` and `disconnectSortableComponent` do nothing during an active drag.
- Loading branch information
Showing
4 changed files
with
8 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters