Skip to content

Commit 50e86ef

Browse files
authored
Merge pull request #3354 from topcoder-platform/issue_3331
Fix for issue #3331
2 parents 41b0f1e + 6224401 commit 50e86ef

File tree

1 file changed

+2
-2
lines changed
  • src/shared/containers/challenge-listing/Listing

1 file changed

+2
-2
lines changed

src/shared/containers/challenge-listing/Listing/index.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,11 @@ export class ListingContainer extends React.Component {
116116
getBackendFilter() {
117117
const {
118118
communitiesList,
119-
selectedCommunityId,
119+
communityId,
120120
} = this.props;
121121
let { filter } = this.props;
122122
let communityFilter = communitiesList.data.find(
123-
item => item.communityId === selectedCommunityId,
123+
item => item.communityId === communityId,
124124
);
125125
if (communityFilter) communityFilter = communityFilter.challengeFilter;
126126
if (communityFilter) filter = combine(filter, communityFilter);

0 commit comments

Comments
 (0)