Skip to content

Commit

Permalink
Regression bug from when we replaced the "selection" with "foreach" (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
pkamps authored Jun 25, 2019
1 parent 13ace6c commit 492a946
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions design/standard/templates/content/datatype/view/ezmatrix.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<th>{$ColumnNames.name|wash( xhtml )}</th>
{/foreach}
</tr>
{foreach $matrix.rows.sequential as $Rows sequence array( bglight, bgdark ) as $rowSequence}
{foreach $matrix.rows.sequential as $rows sequence array( bglight, bgdark ) as $rowSequence}
<tr class="{$rowSequence}">
{foreach $Rows.item.columns as $Columns}
<td>{$Columns|wash( xhtml )}</td>
{foreach $rows.columns as $columns}
<td>{$columns|wash( xhtml )}</td>
{/foreach}
</tr>
{/foreach}
Expand Down

0 comments on commit 492a946

Please sign in to comment.