Skip to content

Commit a514c88

Browse files
authored
Merge pull request #4870 from topcoder-platform/milestone-20200910
Milestone-20200910
2 parents 3c91974 + fd0381a commit a514c88

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ workflows:
230230
filters:
231231
branches:
232232
only:
233-
- feature-contentful
233+
- milestone-20200910
234234
# This is alternate dev env for parallel testing
235235
- "build-test":
236236
context : org-global
@@ -259,7 +259,7 @@ workflows:
259259
filters:
260260
branches:
261261
only:
262-
- feature-contentful
262+
- milestone-20200910
263263
- develop
264264
# Production builds are exectuted
265265
# 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": "1.0.3",
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)