Fix: sometimes order of columns in table was wrong

This commit is contained in:
Arik Fraimovich 2016-11-27 13:08:22 +02:00
parent 8901079084
commit 1ea9f0e900

View File

@ -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>