From 7fec877a5158dac4b94c15eaf4316f693cd62ee9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Juli=C3=A1n?= Date: Wed, 28 Jan 2015 15:22:44 +0100 Subject: [PATCH] Fix member stats points. TG-2075 #ready-for-test --- app/partials/team/team-member-stats.jade | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/partials/team/team-member-stats.jade b/app/partials/team/team-member-stats.jade index 5558dbcc..e611ef0c 100644 --- a/app/partials/team/team-member-stats.jade +++ b/app/partials/team/team-member-stats.jade @@ -1,17 +1,17 @@ .attribute(ng-if='issuesEnabled') - span.icon.icon-briefcase(ng-style="{'opacity': stats.closed_bugs[userId]}", ng-class="{'top': stats.closed_bugs[userId] == 1}") + span.icon.icon-briefcase(ng-style="{'opacity': stats.closed_bugs[userId]}", ng-class="{'top': stats.closed_bugs[userId] == 1}") .attribute(ng-if='tasksEnabled') - span.icon.icon-iocaine(ng-style="{'opacity': stats.iocaine_tasks[userId]}", ng-class="{'top': stats.iocaine_tasks[userId] == 1}") + span.icon.icon-iocaine(ng-style="{'opacity': stats.iocaine_tasks[userId]}", ng-class="{'top': stats.iocaine_tasks[userId] == 1}") .attribute(ng-if='wikiEnabled') - span.icon.icon-writer(ng-style="{'opacity': stats.wiki_changes[userId]}", ng-class="{'top': stats.wiki_changes[userId] == 1}") + span.icon.icon-writer(ng-style="{'opacity': stats.wiki_changes[userId]}", ng-class="{'top': stats.wiki_changes[userId] == 1}") .attribute(ng-if='issuesEnabled') - span.icon.icon-bug(ng-style="{'opacity': stats.created_bugs[userId]}", ng-class="{'top': stats.created_bugs[userId] == 1}") + span.icon.icon-bug(ng-style="{'opacity': stats.created_bugs[userId]}", ng-class="{'top': stats.created_bugs[userId] == 1}") .attribute(ng-if='tasksEnabled') - span.icon.icon-tasks(ng-style="{'opacity': stats.closed_tasks[userId]}", ng-class="{'top': stats.closed_tasks[userId] == 1}") + span.icon.icon-tasks(ng-style="{'opacity': stats.closed_tasks[userId]}", ng-class="{'top': stats.closed_tasks[userId] == 1}") .attribute -span.points(ng-bind='stats.totals[userId]') \ No newline at end of file + span.points(ng-bind='stats.totals[userId]')