Skip to content

Commit

Permalink
[BUGFIX] Style attribute in columns is not set
Browse files Browse the repository at this point in the history
The style information was referenced with gridcolumn instead of area.
  • Loading branch information
geldmacher authored and NamelessCoder committed May 26, 2014
1 parent 21ceb69 commit 7a6557e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<f:for each="{grid.rows}" as="gridrow" iteration="rowIteration">
<tr>
<f:for each="{gridrow.columns}" as="area" iteration="columnIteration">
<td colspan="{area.colspan}" rowspan="{area.rowspan}" style="{gridcolumn.style}">
<td colspan="{area.colspan}" rowspan="{area.rowspan}" style="{area.style}">
<flux:be.contentArea area="{area.name}" row="{row}">
<div class="fce-header t3-row-header t3-page-colHeader t3-page-colHeader-label">
<div>{area.label}</div>
Expand Down

0 comments on commit 7a6557e

Please sign in to comment.