From 663109ce4a1b800a04dccda6974d387dc153cd22 Mon Sep 17 00:00:00 2001 From: mhsdesign <85400359+mhsdesign@users.noreply.github.com> Date: Tue, 6 Feb 2024 21:06:38 +0100 Subject: [PATCH] TASK: Allow inspector.hidden = true in schema --- Neos.Neos/Resources/Private/Schema/NodeTypes.schema.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Neos.Neos/Resources/Private/Schema/NodeTypes.schema.yaml b/Neos.Neos/Resources/Private/Schema/NodeTypes.schema.yaml index f06b5fbbd7c..72d650e7d87 100755 --- a/Neos.Neos/Resources/Private/Schema/NodeTypes.schema.yaml +++ b/Neos.Neos/Resources/Private/Schema/NodeTypes.schema.yaml @@ -52,7 +52,7 @@ additionalProperties: additionalProperties: false properties: - 'hidden': { type: ['string', 'null'], description: 'Option to hide a property.' } + 'hidden': { type: ['string', 'boolean', 'null'], description: 'Option to hide a property.' } 'group': { type: ['string', 'null'], description: 'Identifier of the inspector group in which this property should be edited. If not set, will not appear in inspector at all.' }