From f6de19641477a07e791c9809020a0e5aae933007 Mon Sep 17 00:00:00 2001 From: Sushil Shinde Date: Wed, 26 Aug 2020 12:50:17 +0530 Subject: [PATCH 1/3] 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/3] 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/3] Merge pull request #4771 from cagdas001/integration-v5-challenge-api fix(challenge-listing): sorting by dates & phase displaying