File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 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 < span class ="arrow " :class ="order('name') "> </ span > </ th >
7
6
< th @click ="sortBy('language', 'string') " :class ="{ active: sort_key == 'language' } "> Language < span class ="arrow " :class ="order('language') "> </ span > </ th >
8
7
< 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
13
</ tr >
15
14
</ thead >
16
15
< 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 ">
19
17
< td >
20
18
< strong > < a v-bind:href ="repo.html_url "> {{ repo.name }}</ a > </ strong >
21
19
< i v-if ="repo.fork " class ="fa fa-code-fork " aria-hidden ="true " title ="Forked Repository "> </ i >
You can’t perform that action at this time.
0 commit comments