fix: enable save button when re-ordering components or dynamic zones#25959
Merged
mathildeleg merged 2 commits intodevelopfrom Apr 13, 2026
Merged
fix: enable save button when re-ordering components or dynamic zones#25959mathildeleg merged 2 commits intodevelopfrom
mathildeleg merged 2 commits intodevelopfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Doing some manual testing, it is solving the issue of not being able to save correctly for me :) |
ce9fbd7 to
415b0bb
Compare
markkaylor
approved these changes
Apr 9, 2026
Contributor
markkaylor
left a comment
There was a problem hiding this comment.
Nice, looks good to me. Tested 🎈
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does it do?
This PR resolves two issues in the Configure the View page:
Why is it needed?
When updating the layout of a content-type, by moving a field type Component or Dynamic Zone, the "Save" button was disabled, not allowing users to save their new layout.
BEFORE
https://github.com/user-attachments/assets/f57d9bb0-f340-44a2-a2e2-2370628132d7
AFTER
https://github.com/user-attachments/assets/8b0f1c21-1e96-4a18-870f-bb5fc12b91df
When updating the layout of a content-type, we couldn't drop an element of width smaller than 100% above the first row where the element has the full width, only in the row below.
BEFORE
https://github.com/user-attachments/assets/73ab303a-65bc-4bea-afce-698f001e23fa
AFTER
https://github.com/user-attachments/assets/a4071c9b-e3d7-48a5-9631-a23fc5a273c9
How to test it?
=> The "Save" button should be enabled, allowing you to save your new layout.
Related issue(s)/PR(s)
Fixes #23161
Closes CMS-574