Skip to content

Commit

Permalink
fix: Default Sort By (#3377)
Browse files Browse the repository at this point in the history
  • Loading branch information
xoscar committed Nov 17, 2023
1 parent 7824d24 commit cdf4f35
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions web/src/constants/Test.constants.ts
Expand Up @@ -24,16 +24,16 @@ export enum SortDirection {
}

export const sortOptions = [
{
label: 'Recently Created',
value: 'created',
params: {sortDirection: SortDirection.Desc, sortBy: SortBy.Created},
},
{
label: 'Last Run',
value: 'last_run',
params: {sortDirection: SortDirection.Desc, sortBy: SortBy.LastRun},
},
{
label: 'Recently Created',
value: 'created',
params: {sortDirection: SortDirection.Desc, sortBy: SortBy.Created},
},
{
label: 'Name, A to Z',
value: 'name_asc',
Expand Down

0 comments on commit cdf4f35

Please sign in to comment.