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 6306c80 + 030455f commit 9f432e5Copy full SHA for 9f432e5
src/shared/components/challenge-detail/Registrants/index.jsx
@@ -234,8 +234,8 @@ export default class Registrants extends React.Component {
234
break;
235
}
236
case 'Submitted Date': {
237
- const checkpointA = this.getFinal(a);
238
- const checkpointB = this.getFinal(b);
+ const checkpointA = this.getFinal(a) || this.getSubmissionDate(a);
+ const checkpointB = this.getFinal(b) || this.getSubmissionDate(b);
239
if (checkpointA) {
240
valueA = new Date(checkpointA);
241
0 commit comments