Skip to content

Commit

Permalink
Merge pull request #117 from markusguenther/bugfix/adapt-breadcrumb-fix
Browse files Browse the repository at this point in the history
BUGFIX: Remove reverse order
  • Loading branch information
jonnitto authored Nov 24, 2021
2 parents 38ef33a + 3fe7548 commit 1ffb2c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ prototype(Neos.Demo:Document.Fragment.Menu.Breadcrumb) < prototype(Neos.Fusion:C

renderer = afx`
<ul class="breadcrumb">
<Neos.Fusion:Loop items={Array.reverse(props.menuItems)}>
<Neos.Fusion:Loop items={props.menuItems}>
<li class={item.state}>
<Neos.Neos:NodeLink node={item.node} >{item.label}</Neos.Neos:NodeLink>
</li>
Expand Down

0 comments on commit 1ffb2c4

Please sign in to comment.