From e972c580ed4161291bd79b88899ae5256cb5f37a Mon Sep 17 00:00:00 2001 From: Markus Bachmann Date: Wed, 27 Aug 2025 21:14:23 +0200 Subject: [PATCH] fix: render options correctly --- Resources/Private/Fusion/SelectOptionCollection.fusion | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Private/Fusion/SelectOptionCollection.fusion b/Resources/Private/Fusion/SelectOptionCollection.fusion index 88471ba..d1fae0e 100644 --- a/Resources/Private/Fusion/SelectOptionCollection.fusion +++ b/Resources/Private/Fusion/SelectOptionCollection.fusion @@ -7,7 +7,7 @@ prototype(Neos.Form.Builder:SelectOptionCollection) { items = null itemName = 'item' itemRenderer = Neos.Fusion:DataStructure { - value = null - label = null + value = ${q(item).property("value")} + label = ${q(item).property("label")} } }