Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e565009

Browse files
committed
Remove rank column
1 parent 05d8db1 commit e565009

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

templates/coder/repos.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<table>
33
<thead>
44
<tr>
5-
<th>#</th>
65
<th @click="sortBy('name', 'string')" :class="{ active: sort_key == 'name' }">Name <span class="arrow" :class="order('name')"></span></th>
76
<th @click="sortBy('language', 'string')" :class="{ active: sort_key == 'language' }">Language <span class="arrow" :class="order('language')"></span></th>
87
<th class="text-right" @click="sortBy('created_at')" :class="{ active: sort_key == 'created_at' }">Created at <span class="arrow" :class="order('created_at')"></span></th>
@@ -14,8 +13,7 @@
1413
</tr>
1514
</thead>
1615
<tbody>
17-
<tr v-for="(repo, idx) in repos_pushed" :title="repo.description">
18-
<td>{{ idx + 1}}</td>
16+
<tr v-for="repo in repos_pushed" :title="repo.description">
1917
<td>
2018
<strong><a v-bind:href="repo.html_url">{{ repo.name }}</a></strong>
2119
<i v-if="repo.fork" class="fa fa-code-fork" aria-hidden="true" title="Forked Repository"></i>

0 commit comments

Comments
 (0)