From b6d10972760a153ac3a2048494430a23c6e87358 Mon Sep 17 00:00:00 2001 From: narekcat Date: Thu, 27 Aug 2020 18:14:33 +0400 Subject: [PATCH] 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 6b7795db73..bb2b7b7817 100644 --- a/src/shared/components/challenge-detail/Specification/index.jsx +++ b/src/shared/components/challenge-detail/Specification/index.jsx @@ -84,7 +84,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 = '';