From d3e845a029b841b209d71f9978de0ad0c9260663 Mon Sep 17 00:00:00 2001 From: Jon Uhlmann Date: Fri, 25 Jul 2025 19:51:05 +0200 Subject: [PATCH] Docs: Fix example yaml --- README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 9e3170b..5e23e34 100644 --- a/README.md +++ b/README.md @@ -33,24 +33,24 @@ your yaml: label: 'Settings' properties: height: - type: string - ui: - # not need to explicitly state it since its the default: - # reloadIfChanged: false - label: 'Height' - inspector: - group: settings - editor: 'Neos.Neos/Inspector/Editors/SelectBoxEditor' - editorOptions: - allowEmpty: true - values: - # your css classes as key. - height-sm: - label: 'Small' - height-md: - label: 'Medium' - height-lg: - label: 'Large' + type: string + ui: + # not need to explicitly state it since its the default: + # reloadIfChanged: false + label: 'Height' + inspector: + group: settings + editor: 'Neos.Neos/Inspector/Editors/SelectBoxEditor' + editorOptions: + allowEmpty: true + values: + # your css classes as key. + height-sm: + label: 'Small' + height-md: + label: 'Medium' + height-lg: + label: 'Large' ```