From 708289dfa7a333ac6cb32490b7d980445e063b90 Mon Sep 17 00:00:00 2001 From: Matthias Klatte Date: Thu, 6 Jul 2017 09:40:44 +0200 Subject: [PATCH] FIX: use specified node as context for property editing Wrapping the element in a Neos.Neos:ContentElementWrapping did not suffice for the ContentElementEditable object to load the correct node's property --- Resources/Private/Fusion/Prototypes/Editable.fusion | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Private/Fusion/Prototypes/Editable.fusion b/Resources/Private/Fusion/Prototypes/Editable.fusion index 0754541..10a4189 100644 --- a/Resources/Private/Fusion/Prototypes/Editable.fusion +++ b/Resources/Private/Fusion/Prototypes/Editable.fusion @@ -11,6 +11,7 @@ prototype(PackageFactory.AtomicFusion:Editable) < prototype(PackageFactory.Atomi content = ${q(props.node).property(props.property)} @process.contentElementEditableWrapping = Neos.Neos:ContentElementEditable { property = ${props.property} + node = ${props.node} } @if.hasProperty = ${props.property ? true : false} }