Skip to content

Commit 64a6ef5

Browse files
Revert Review Opportunities sort to asc
@gets0ul this was a mistyped in issue description, we need keep this like existing.
1 parent 92df869 commit 64a6ef5

File tree

1 file changed

+1
-1
lines changed
  • src/shared/utils/challenge-listing

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export default {
9494
},
9595
[SORTS.REVIEW_OPPORTUNITIES_START_DATE]: {
9696
// This will implicitly use moment#valueOf
97-
func: (a, b) => moment(b.startDate) - moment(a.startDate), // descending
97+
func: (a, b) => moment(a.startDate) - moment(b.startDate),
9898
name: 'Review start date',
9999
},
100100
};

0 commit comments

Comments
 (0)