-
-
Notifications
You must be signed in to change notification settings - Fork 135
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
TASK: Adjust to changes in Neos removing internal node properties #3735
Conversation
linting seems again unrelated :/ |
These errors seem unrelated |
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.
Hi @kitsunet,
I ran E2E tests locally and did some manual testing on disabled-state, and hiddenInMenu
stuff. Works perfectly 👍
Oh, and also: phpstan is green locally |
'_hidden' => $node->tags->contain(SubtreeTag::fromString('disabled')), | ||
'_hiddenInIndex' => $node->getProperty('_hiddenInIndex'), | ||
// TODO: we should export this correctly named, but that needs changes throughout the JS code as well. | ||
'_hidden' => $node->tags->withoutInherited()->contain(SubtreeTag::disabled()), |
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.
ah i see nice fix here ;) this is currently broken as nodes are always shown as explicitly hidden
See: neos/neos-development-collection#4921