-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Fix content item display coordinator when a GroupId is provided #11714
Fix content item display coordinator when a GroupId is provided #11714
Conversation
pulling new updates
Hard to understand the changes since there are indentations changes that mess-up with the diff. |
@sebastienros the main different is adding shapeResult.OnGroup(context.GroupId) and typePartShapeResult.OnGroup(groupId); without honoring the GroupId from current context, the Other stuff is just code cleanup to reduce it |
The
ContentItemDisplayCoordinator
has an issue where it was not rendering the parts on Edit when a groupId is provided. Explained in #11718This PR calls
shapeResult.OnGroup(context.GroupId);
to ensure the shape is rendered with a groupId is provided fixed #11718Also, slightly cleans up the code.