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.
1 parent 02fb0cf commit 030455fCopy full SHA for 030455f
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