Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.
Merged

Dev #106

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ <h2>Round 2 (Final)</h2>
<!--#/end competitionDetails-->
</article>

<article ng-if="!CD.isDesign && CD.submissions.length > 0 && !CD.challenge.reviewType === 'PEER'">
<article ng-if="!CD.isDesign && CD.submissions.length > 0 && !(CD.challenge.reviewType === 'PEER')">
<div ng-if="CD.challenge.challengeType != 'Code' && CD.firstPlaceSubmission" class="winnerRow">
<div class="place first">1<span>st</span></div>
<!-- #/end place-->
Expand Down
1 change: 1 addition & 0 deletions src/js/app/challenges/services/challengeService.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@
// Add My Challenges Filter and Improve Filters challenge -- different api endpoint
return UserChallengesService.getUserChallenges(listType === 'user-past' ? 'past' : 'active', params);
} else {
params.review = 'COMMUNITY,INTERNAL';
return Restangular.one('challenges').getList(listType, params);
}
}
Expand Down