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

Commit db06e0e

Browse files
committed
Merge pull request #106 from appirio-tech/dev
Dev
2 parents 6270769 + abf9896 commit db06e0e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/js/app/challenge-details/partials/ng-page-challenge-result.tpl.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ <h2>Round 2 (Final)</h2>
119119
<!--#/end competitionDetails-->
120120
</article>
121121

122-
<article ng-if="!CD.isDesign && CD.submissions.length > 0 && !CD.challenge.reviewType === 'PEER'">
122+
<article ng-if="!CD.isDesign && CD.submissions.length > 0 && !(CD.challenge.reviewType === 'PEER')">
123123
<div ng-if="CD.challenge.challengeType != 'Code' && CD.firstPlaceSubmission" class="winnerRow">
124124
<div class="place first">1<span>st</span></div>
125125
<!-- #/end place-->

src/js/app/challenges/services/challengeService.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@
186186
// Add My Challenges Filter and Improve Filters challenge -- different api endpoint
187187
return UserChallengesService.getUserChallenges(listType === 'user-past' ? 'past' : 'active', params);
188188
} else {
189+
params.review = 'COMMUNITY,INTERNAL';
189190
return Restangular.one('challenges').getList(listType, params);
190191
}
191192
}

0 commit comments

Comments
 (0)