File tree 2 files changed +3
-4
lines changed
src/shared/components/challenge-detail/Submissions
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -175,8 +175,7 @@ workflows:
175
175
branches :
176
176
only :
177
177
- develop
178
- - hot-fix-performance
179
- - feature-member-profiles
178
+ - hot-fix-challenge-details
180
179
# This is alternate dev env for parallel testing
181
180
- " build-test " :
182
181
context : org-global
Original file line number Diff line number Diff line change @@ -179,8 +179,8 @@ class SubmissionsComponent extends React.Component {
179
179
}
180
180
case 'Time' :
181
181
case 'Submission Date' : {
182
- valueA = new Date ( a . submissions [ 0 ] . submissionTime ) ;
183
- valueB = new Date ( b . submissions [ 0 ] . submissionTime ) ;
182
+ valueA = new Date ( a . submissions && a . submissions [ 0 ] . submissionTime ) ;
183
+ valueB = new Date ( b . submissions && b . submissions [ 0 ] . submissionTime ) ;
184
184
break ;
185
185
}
186
186
case 'Initial / Final Score' : {
You can’t perform that action at this time.
0 commit comments