diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-11-07 22:56:35 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-11-07 22:56:35 +0100 |
commit | 36652c02b1724ba12e21e76acd20f8c232dd2414 (patch) | |
tree | 6420ff876c0729ec702282fa2e4ea448a2aa6007 /app | |
parent | 75098f40f02afa77d56b39ca851374f98d769786 (diff) |
sort newest issues first by default
Diffstat (limited to 'app')
-rw-r--r-- | app/Issue/Sort.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Issue/Sort.hs b/app/Issue/Sort.hs index 5499f9c..772cd7f 100644 --- a/app/Issue/Sort.hs +++ b/app/Issue/Sort.hs @@ -29,7 +29,7 @@ data SortBy deriving (Show) defaultSort :: Sort -defaultSort = Sort Asc (SortByTag "@createdAt") +defaultSort = Sort Desc (SortByTag "@createdAt") sortArg :: O.Parser [Sort] sortArg = |