Skip to content

Commit a795778

Browse files
committed
improvement(reskin): sort by mm submission
1 parent a6c2138 commit a795778

File tree

1 file changed

+2
-2
lines changed
  • src/shared/components/challenge-detail/Header/TabSelector

1 file changed

+2
-2
lines changed

src/shared/components/challenge-detail/Header/TabSelector/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ export default function ChallengeViewSelector(props) {
8686
{ field: 'Final Score', sort: 'asc', name: 'Final Score: Low to High' },
8787
{ field: 'Provisional Score', sort: 'desc', name: 'Provisional Score: High to Low' },
8888
{ field: 'Provisional Score', sort: 'asc', name: 'Provisional Score: Low to High' },
89-
{ field: 'Submission Date', sort: 'desc', name: 'Submission Date: New to Old' },
90-
{ field: 'Submission Date', sort: 'asc', name: 'Submission Date: Old to New' },
89+
{ field: 'Time', sort: 'desc', name: 'Submission Date: New to Old' },
90+
{ field: 'Time', sort: 'asc', name: 'Submission Date: Old to New' },
9191
];
9292

9393
const MySubmissionsSortOptions = [

0 commit comments

Comments
 (0)