mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 20:24:59 +00:00
optimize<Sort>: remove sort repositories by name desc
This commit is contained in:
parent
ccb3c07064
commit
217a382849
4 changed files with 6 additions and 13 deletions
|
@ -22,8 +22,7 @@ namespace SourceGit.Models {
|
|||
/// 起始页仓库列表排序方式
|
||||
/// </summary>
|
||||
public enum SortMethod {
|
||||
ByNameASC,
|
||||
ByNameDESC,
|
||||
ByName,
|
||||
ByRecentlyOpened,
|
||||
ByBookmark,
|
||||
}
|
||||
|
@ -73,7 +72,7 @@ namespace SourceGit.Models {
|
|||
/// <summary>
|
||||
/// 起始页仓库列表排序规则
|
||||
/// </summary>
|
||||
public SortMethod SortBy { get; set; } = SortMethod.ByNameASC;
|
||||
public SortMethod SortBy { get; set; } = SortMethod.ByName;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue