Sort on repo size in admin panel (#1654)
* fix #1653 sort on repo size * fix minor mistake in en-us locale
This commit is contained in:
parent
3792867955
commit
87efc8c6d4
3 changed files with 8 additions and 0 deletions
|
@ -94,6 +94,10 @@ func RenderRepoSearch(ctx *context.Context, opts *RepoSearchOptions) {
|
|||
orderBy = "name DESC"
|
||||
case "alphabetically":
|
||||
orderBy = "name ASC"
|
||||
case "reversesize":
|
||||
orderBy = "size DESC"
|
||||
case "size":
|
||||
orderBy = "size ASC"
|
||||
default:
|
||||
orderBy = "created_unix DESC"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue