From f6de19641477a07e791c9809020a0e5aae933007 Mon Sep 17 00:00:00 2001 From: Sushil Shinde Date: Wed, 26 Aug 2020 12:50:17 +0530 Subject: [PATCH 1/5] Merge pull request #4813 from topcoder-platform/issue-4806 Fix sub-communities filter does not include private communities --- src/shared/actions/tc-communities/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/actions/tc-communities/index.js b/src/shared/actions/tc-communities/index.js index c2f30c6ea9..4b14591442 100644 --- a/src/shared/actions/tc-communities/index.js +++ b/src/shared/actions/tc-communities/index.js @@ -38,7 +38,7 @@ function getListInit(uuid) { * @return {Promise} */ function getListDone(uuid, auth) { - const groups = _.get(auth, 'profile.groups', []).map(g => g.oldId); + const groups = _.get(auth, 'profile.groups', []).map(g => g.id); return getCommunitiesService(auth.tokenV3) .getList(groups).then(list => ({ list, uuid })); } From ed88f51604f120e949132d9a254c86076bbf098c Mon Sep 17 00:00:00 2001 From: Sushil Shinde Date: Thu, 27 Aug 2020 20:01:05 +0530 Subject: [PATCH 2/5] Merge pull request #4824 from narekcat/issue-4727 fix: for issue #4727 --- src/shared/components/challenge-detail/Specification/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/challenge-detail/Specification/index.jsx b/src/shared/components/challenge-detail/Specification/index.jsx index 96d728e4f5..b6d3566c53 100644 --- a/src/shared/components/challenge-detail/Specification/index.jsx +++ b/src/shared/components/challenge-detail/Specification/index.jsx @@ -85,7 +85,7 @@ export default function ChallengeDetailsView(props) { let isWipro = false; const wiproCommunity = communitiesList.find(x => x.communityId === 'wipro'); if (wiproCommunity && groups) { - isWipro = wiproCommunity.groupIds.some(id => groups[id]); + isWipro = wiproCommunity.groupIds.some(id => groups.includes(id)); } let accentedStyle = ''; From 5a2d46315b2701076d88bdf2c10066843b5f1d3b Mon Sep 17 00:00:00 2001 From: Sushil Shinde Date: Fri, 21 Aug 2020 08:35:06 +0530 Subject: [PATCH 3/5] Merge pull request #4771 from cagdas001/integration-v5-challenge-api fix(challenge-listing): sorting by dates & phase displaying From d5632f859170f9b4e968e4a3ea2fccc8257609c6 Mon Sep 17 00:00:00 2001 From: Sushil Shinde Date: Fri, 28 Aug 2020 12:33:29 +0530 Subject: [PATCH 4/5] fix: for #4792 https://github.com/topcoder-platform/community-app/issues/4792 PrakashDurlabhji https://github.com/topcoder-platform/topcoder-react-lib/pull/229 1.0.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3c9ed33fbe..564a7ff647 100644 --- a/package.json +++ b/package.json @@ -137,7 +137,7 @@ "tc-accounts": "git+https://github.com/appirio-tech/accounts-app.git#dev", "tc-core-library-js": "github:appirio-tech/tc-core-library-js#v2.6.3", "tc-ui": "^1.0.12", - "topcoder-react-lib": "1.0.0", + "topcoder-react-lib": "1.0.1", "topcoder-react-ui-kit": "2.0.0", "topcoder-react-utils": "0.7.8", "turndown": "^4.0.2", From 4c6d74bec4a83e2de060e317d9da37ed8ff80872 Mon Sep 17 00:00:00 2001 From: Sushil Shinde Date: Fri, 28 Aug 2020 13:49:28 +0530 Subject: [PATCH 5/5] fix: revert #4792 https://github.com/topcoder-platform/community-app/issues/4792 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 564a7ff647..3c9ed33fbe 100644 --- a/package.json +++ b/package.json @@ -137,7 +137,7 @@ "tc-accounts": "git+https://github.com/appirio-tech/accounts-app.git#dev", "tc-core-library-js": "github:appirio-tech/tc-core-library-js#v2.6.3", "tc-ui": "^1.0.12", - "topcoder-react-lib": "1.0.1", + "topcoder-react-lib": "1.0.0", "topcoder-react-ui-kit": "2.0.0", "topcoder-react-utils": "0.7.8", "turndown": "^4.0.2",