dashboard: avoid fake decimals in score

This commit is contained in:
nemunaire 2019-01-23 18:29:24 +01:00
parent 5714e8f41b
commit 5c5dadbee0
1 changed files with 2 additions and 2 deletions

View File

@ -228,7 +228,7 @@
<tr ng-repeat="r in rank | orderBy: 'rank' | limitTo: 7: 7*i">
<th class="text-right">{{ r.rank }}<sup ng-if="r.rank == 1">er</sup><sup ng-if="r.rank > 1">e</sup></th>
<td>{{ r.name }}</td>
<td>{{ r.score }}</td>
<td>{{ r.score | number:0 }}</td>
</tr>
</tbody>
</table>
@ -404,7 +404,7 @@
<tr ng-repeat="r in rank | orderBy: 'rank' | limitTo: 7: 7*i">
<th class="text-right">{{ r.rank }}<sup ng-if="r.rank == 1">er</sup><sup ng-if="r.rank > 1">e</sup></th>
<td>{{ r.name }}</td>
<td>{{ r.score }}</td>
<td>{{ r.score | number:0 }}</td>
</tr>
</tbody>
</table>