Skip to content

Commit

Permalink
Merge pull request #4546 from neos/bugfix/adjust-to-removed-eelhelper
Browse files Browse the repository at this point in the history
BUGFIX: Adjust `rawContent` mode condition to use `renderingMode.isEdit`
  • Loading branch information
bwaidelich authored Sep 21, 2023
2 parents f82d8e2 + 14f9022 commit 967ca56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Neos.Neos/Resources/Private/Fusion/RootCase.fusion
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ root {

rawContent {
@position = 'end 10000'
condition = ${Neos.Node.inBackend(documentNode) && documentNode.context.currentRenderingMode.edit}
condition = ${renderingMode.isEdit}
renderPath = '/rawContent'
}

Expand Down

0 comments on commit 967ca56

Please sign in to comment.