We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57af725 commit de0b0d5Copy full SHA for de0b0d5
src/shared/containers/challenge-detail/index.jsx
@@ -38,6 +38,7 @@ import {
38
COMPETITION_TRACKS,
39
COMPETITION_TRACKS_V3,
40
SUBTRACKS,
41
+ CHALLENGE_STATUS,
42
} from 'utils/tc';
43
import { config, MetaTags } from 'topcoder-react-utils';
44
import { actions } from 'topcoder-react-lib';
@@ -850,6 +851,8 @@ const mapDispatchToProps = (dispatch) => {
850
851
} else dispatch(a.dropCheckpoints());
852
853
if (ch.status === CHALLENGE_STATUS.COMPLETED) {
854
+ dispatch(a.loadResultsInit(ch.legacyId));
855
+ dispatch(a.loadResultsDone(tokens, ch.legacyId, ch.track.toLowerCase()));
856
} else dispatch(a.dropResults());
857
return res;
858
});
0 commit comments