You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Backend: Add show_scores_on_leaderboard field to ChallengePhaseSplit model and update related components (#4985)
* Backend: Add show_scores_on_leaderboard field to ChallengePhaseSplit model and update related components
* Frontend: Add unit test to ensure chosenMetrics is set to empty when show_scores_on_leaderboard is false
<tdng-repeat="(i, key) in challenge.leaderboard[0].leaderboard__schema.labels track by $index" ng-if="challenge.chosenMetrics.indexOf($index.toString()) !== -1">
110
+
<tdng-repeat="(i, key) in challenge.leaderboard[0].leaderboard__schema.labels track by $index" ng-if="(challenge.chosenMetrics || []).indexOf($index.toString()) !== -1">
0 commit comments