You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FEATURE: Adjust disabled feature to work with NodeMutator architecture
- introduce $showDisabledNodesInSubgraph in tests to show disabled created nodes
- introduce `NodeMutator::setDisabled`
- updated all snapshots to include `"disabled": false,`
// `hasAutoCreatedChildNode` actually has a bug; it looks up the NodeName parameter against the raw configuration instead of the transliterated NodeName
77
74
// https://github.com/neos/neos-ui/issues/3527
@@ -157,6 +154,7 @@ private function createMutatorsForChildNodeTemplates(Templates $templates, Trans
Copy file name to clipboardExpand all lines: Classes/Domain/NodeCreation/PropertiesProcessor.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ private function assertValidPropertyName($propertyName): void
95
95
if ($propertyName[0] === '_') {
96
96
$lowerPropertyName = strtolower($propertyName);
97
97
if ($lowerPropertyName === '_hidden') {
98
-
thrownewPropertyIgnoredException('Using "_hidden" as property declaration was removed. Please use "disabled" on the first level instead.');
98
+
thrownewPropertyIgnoredException('Using "_hidden" as property declaration was removed. Please use "disabled" on the first level instead.', 1719079679);
0 commit comments