mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 09:28:51 +00:00
Fix: sometimes order of columns in table was wrong
This commit is contained in:
parent
8901079084
commit
1ea9f0e900
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user