You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(drag-drop): unable to drop into connected list inside shad… (#17424)
In #16899 we added some logic to account for connected drop lists inside the shadow DOM, however the logic was put in the constructor which is too early since the element might not be moved into the shadow DOM yet, if it is inserted through something like `ngFor` or `ngIf`.
These changes fix the issue by resolving the shadow root lazily the first time it is requested, which should be more than enough time for the element to have been moved into the shadow DOM.
Fixes#17422.
0 commit comments