Conversation
taylortom
requested changes
Jun 24, 2026
taylortom
left a comment
Contributor
There was a problem hiding this comment.
This blacklist was specifically added for the _menu and _theme props on the config schema which are never set directly.
We have a basic mechanism for hiding fields via the schema (not a recursive check, top-level only as it stands - this needs updating). If we remove the blacklisted items, we need to make sure the schemas are updated to match (although we need to be mindful that AATs with older versions of the schemas won't pick up the changes until FW/plugins are updated).
We ideally need to update all schemas for the blacklisted props to avoid these issues going forward.
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.
Fixes #484
Fix
Removed
_menufromATTRIBUTE_BLACKLISTin app/modules/scaffold/index.js.The blacklist is applied globally to all schemas before rendering forms.
_menuwas included to suppress the internal content-object property of the same name, but the name collision also hid any theme schema group named_menu(e.g. the Menu colour group in adapt-contrib-vanilla). The_menucontent-object attribute is already excluded from theme forms by context — it is not present in theme schemas — so the blacklist entry is unnecessary and only causes harm.Testing
_menugroup in schema/theme.schema.json)._menufield appears there.Posted via collaboration with Claude Code