Skip to content

Commit a341f65

Browse files
authored
[BUGFIX] Remove unnecessary “data.” in _Default.html (#1350)
Accessing the data does not work with contentElement.data.[property], but directly with contentElement.[property] (Tested in TYPO3 version 13.4.0-dev)
1 parent 24a86a0 commit a341f65

File tree

1 file changed

+2
-2
lines changed
  • Documentation/DataProcessing/_PageContentFetchingProcessor

1 file changed

+2
-2
lines changed

Documentation/DataProcessing/_PageContentFetchingProcessor/_Default.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<f:render partial="Jumbotron" arguments="{jumbotronContent: myContent.jumbotron}"/>
22
<main>
33
<f:for each="{myContent.left.records}" as="contentElement">
4-
<h3>{contentElement.data.header}</h3>
5-
<p>{contentElement.data.bodytext -> f:format.html()}</p>
4+
<h3>{contentElement.header}</h3>
5+
<p>{contentElement.bodytext -> f:format.html()}</p>
66
</f:for>
77
</main>
88
<aside>

0 commit comments

Comments
 (0)