Misc cleanup

This commit is contained in:
Matthew Dillon 2015-06-18 14:38:12 -08:00
parent 0710fdf680
commit 19359c341d
5 changed files with 9 additions and 10 deletions

View file

@ -1,13 +1,13 @@
<thead>
<tr>
{{#each a in tableAttrs}}
{{#each tableAttrs as |a|}}
{{sortable-table-header title=a.name sortProperty=a.attr action="sortBy"}}
{{/each}}
</tr>
</thead>
<tbody>
{{#each item in arrangedContent}}
{{#each arrangedContent as |item|}}
{{component row data=item}}
{{/each}}
</tbody>