We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8cda8d0 + 52978ec commit 9b3ef86Copy full SHA for 9b3ef86
src/shared/utils/challenge-listing/sort.js
@@ -29,11 +29,11 @@ export default {
29
name: 'Most recent',
30
},
31
[SORTS.NUM_REGISTRANTS]: {
32
- func: (a, b) => b.numRegistrants - a.numRegistrants,
+ func: (a, b) => b.numOfRegistrants - a.numOfRegistrants,
33
name: '# of registrants',
34
35
[SORTS.NUM_SUBMISSIONS]: {
36
- func: (a, b) => b.numSubmissions - a.numSubmissions,
+ func: (a, b) => b.numOfSubmissions - a.numOfSubmissions,
37
name: '# of submissions',
38
39
[SORTS.PRIZE_HIGH_TO_LOW]: {
0 commit comments