-
Notifications
You must be signed in to change notification settings - Fork 26.3k
fix(ivy): ViewRef.rootNodes not including projected nodes #28951
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Currently if an embedded view contains projected nodes, its `rootNodes` array will include `null` instead of the root nodes inside the projection slot. This manifested itself in one of the Material unit tests where we stamp out a template and then move its `rootNodes` into the overlay container. This PR is related to FW-1087.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Updates the root causes for the remaining `MatMenu` tests. Note that two tests are omitted from this PR, because one will be fixed by angular#28951 and the other one depends on static queries and will be refactored by angular/components#15289.
Updates the root causes for the remaining `MatMenu` tests. Note that two tests are omitted from this PR, because one will be fixed by #28951 and the other one depends on static queries and will be refactored by angular/components#15289. PR Close #28952
merge-assistance: core approval should be sufficient |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Currently if an embedded view contains projected nodes, its
rootNodes
array will includenull
instead of the root nodes inside the projection slot. This manifested itself in one of the Material unit tests where we stamp out a template and then move itsrootNodes
into the overlay container.This PR is related to FW-1087.