Skip to content

Commit

Permalink
[BUGFIX] BackendPreview: Check array before access in fluid
Browse files Browse the repository at this point in the history
Resolves: #576
Release: 12.0.1 8.2.0
  • Loading branch information
opi99 committed Sep 18, 2024
1 parent f215820 commit f906e19
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,11 @@
</f:section>

<f:section name="section">
<ul>
<f:for each="{fieldsData}" as="fieldData">
<li><f:render section="elements" arguments="{fieldsDs: fieldsDs, fieldsData: fieldData}" /></li>
</f:for>
</ul>
<f:if condition="{fieldsData}">
<ul>
<f:for each="{fieldsData}" as="fieldData">
<li><f:render section="elements" arguments="{fieldsDs: fieldsDs, fieldsData: fieldData}" /></li>
</f:for>
</ul>
</f:if>
</f:section>

0 comments on commit f906e19

Please sign in to comment.