|
2 | 2 | <table> |
3 | 3 | <thead> |
4 | 4 | <tr> |
5 | | -<th>#</th> |
6 | 5 | <th@click="sortBy('name', 'string')":class="{ active: sort_key == 'name' }">Name<spanclass="arrow":class="order('name')"></span></th> |
7 | 6 | <th@click="sortBy('language', 'string')":class="{ active: sort_key == 'language' }">Language<spanclass="arrow":class="order('language')"></span></th> |
8 | 7 | <thclass="text-right"@click="sortBy('created_at')":class="{ active: sort_key == 'created_at' }">Created at<spanclass="arrow":class="order('created_at')"></span></th> |
|
14 | 13 | </tr> |
15 | 14 | </thead> |
16 | 15 | <tbody> |
17 | | -<trv-for="(repo, idx) in repos_pushed":title="repo.description"> |
18 | | -<td>{{ idx + 1}}</td> |
| 16 | +<trv-for="repo in repos_pushed":title="repo.description"> |
19 | 17 | <td> |
20 | 18 | <strong><av-bind:href="repo.html_url">{{ repo.name }}</a></strong> |
21 | 19 | <iv-if="repo.fork"class="fa fa-code-fork"aria-hidden="true"title="Forked Repository"></i> |
|