Skip to content

Commit 6a419f1

Browse files
adding sort options in buckets
1 parent 8e0504e commit 6a419f1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/shared/utils/challenge-listing/buckets.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ export const BUCKET_DATA = {
3636
name: 'My Challenges',
3737
sorts: [
3838
SORTS.MOST_RECENT_START_DATE,
39-
// SORTS.TIME_TO_SUBMIT,
39+
SORTS.TIME_TO_SUBMIT,
4040
// SORTS.NUM_REGISTRANTS,
4141
// SORTS.NUM_SUBMISSIONS,
42-
// SORTS.PRIZE_HIGH_TO_LOW,
42+
SORTS.PRIZE_HIGH_TO_LOW,
4343
SORTS.TITLE_A_TO_Z,
4444
],
4545
},
@@ -53,11 +53,11 @@ export const BUCKET_DATA = {
5353
name: 'Open for registration',
5454
sorts: [
5555
SORTS.MOST_RECENT_START_DATE,
56-
// SORTS.TIME_TO_REGISTER,
57-
// SORTS.TIME_TO_SUBMIT,
56+
SORTS.TIME_TO_REGISTER,
57+
SORTS.TIME_TO_SUBMIT,
5858
// SORTS.NUM_REGISTRANTS,
5959
// SORTS.NUM_SUBMISSIONS,
60-
// SORTS.PRIZE_HIGH_TO_LOW,
60+
SORTS.PRIZE_HIGH_TO_LOW,
6161
SORTS.TITLE_A_TO_Z,
6262
],
6363
},
@@ -72,9 +72,9 @@ export const BUCKET_DATA = {
7272
name: 'Ongoing challenges',
7373
sorts: [
7474
SORTS.MOST_RECENT_START_DATE,
75-
// SORTS.CURRENT_PHASE,
75+
SORTS.CURRENT_PHASE,
7676
SORTS.TITLE_A_TO_Z,
77-
// SORTS.PRIZE_HIGH_TO_LOW,
77+
SORTS.PRIZE_HIGH_TO_LOW,
7878
],
7979
},
8080
[BUCKETS.UPCOMING]: {

0 commit comments

Comments
 (0)