Skip to content

Commit 218802d

Browse files
committed
Merge remote-tracking branch 'origin/develop' into milestone-v1.3
2 parents 539853d + a514c88 commit 218802d

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.circleci/config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ workflows:
231231
branches:
232232
only:
233233
- milestone-v1.3
234+
- milestone-20200910
234235
# This is alternate dev env for parallel testing
235236
- "build-test":
236237
context : org-global
@@ -260,6 +261,7 @@ workflows:
260261
branches:
261262
only:
262263
- milestone-v1.3
264+
- milestone-20200910
263265
- develop
264266
# Production builds are exectuted
265267
# when PR is merged to the master

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
"tc-accounts": "git+https://github.com/appirio-tech/accounts-app.git#dev",
138138
"tc-core-library-js": "github:appirio-tech/tc-core-library-js#v2.6.3",
139139
"tc-ui": "^1.0.12",
140-
"topcoder-react-lib": "1000.22.2",
140+
"topcoder-react-lib": "1000.22.3",
141141
"topcoder-react-ui-kit": "2.0.0",
142142
"topcoder-react-utils": "0.7.8",
143143
"turndown": "^4.0.2",

src/shared/components/ProfilePage/Stats/HistoryGraph/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export default class HistoryGraph extends React.Component {
211211
}
212212
if (track === 'DATA_SCIENCE') {
213213
if (subTrack === 'MARATHON_MATCH') {
214-
return `/challenges/${challengeId}`;
214+
return `${config.URL.COMMUNITY}/tc?module=MatchDetails&rd=${challengeId}`;
215215
}
216216
if (subTrack === 'SRM') {
217217
return `${config.URL.COMMUNITY}/stat?c=round_overview&rd=${challengeId}`;

src/shared/components/SubmissionPage/Submit/index.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ class Submit extends React.Component {
150150
const topGearCommunity = _.find(communitiesList.data, { mainSubdomain: 'topgear' });
151151
if (topGearCommunity) {
152152
// check the group info match with group list
153-
_.forOwn(groups, (value, key) => {
154-
if (value && _.includes(topGearCommunity.groupIds, key)) {
153+
_.forOwn(groups, (value) => {
154+
if (value && _.includes(topGearCommunity.groupIds, value)) {
155155
isChallengeBelongToTopgearGroup = true;
156156
return false;
157157
}

0 commit comments

Comments
 (0)