Skip to content

Commit cdf4f35

Browse files
authored
fix: Default Sort By (#3377)
1 parent 7824d24 commit cdf4f35

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

web/src/constants/Test.constants.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ export enum SortDirection {
2424
}
2525

2626
export const sortOptions = [
27-
{
28-
label: 'Recently Created',
29-
value: 'created',
30-
params: {sortDirection: SortDirection.Desc, sortBy: SortBy.Created},
31-
},
3227
{
3328
label: 'Last Run',
3429
value: 'last_run',
3530
params: {sortDirection: SortDirection.Desc, sortBy: SortBy.LastRun},
3631
},
32+
{
33+
label: 'Recently Created',
34+
value: 'created',
35+
params: {sortDirection: SortDirection.Desc, sortBy: SortBy.Created},
36+
},
3737
{
3838
label: 'Name, A to Z',
3939
value: 'name_asc',

0 commit comments

Comments
 (0)