Skip to content

Commit

Permalink
Fix: sometimes order of columns in table was wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
arikfr committed Nov 27, 2016
1 parent 8901079 commit 1ea9f0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/app/components/dynamic-table/dynamic-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
</thead>
<tbody>
<tr ng-repeat="row in $ctrl.rows">
<td ng-repeat="(name, value) in row">
{{value}}
<td ng-repeat="column in $ctrl.columns">
{{row[column]}}
</td>
</tr>
</tbody>
Expand Down

0 comments on commit 1ea9f0e

Please sign in to comment.