Skip to content
This repository has been archived by the owner on Sep 3, 2019. It is now read-only.

Commit

Permalink
Merge pull request #29 from bayo-jsc/bits
Browse files Browse the repository at this point in the history
Fix bits
  • Loading branch information
theanht1 authored Jul 9, 2017
2 parents b4cbb39 + 838e65d commit 9a94989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/elo.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<td>${ index + 1 }</td>
<td>${ member.username }</td>
<td>${ member.elo }</td>
<td>${ `member.elo > 1023 ? '11' : '10'` bits }</td>
<td>${ member.elo > 1023 ? 11 : 10 }</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit 9a94989

Please sign in to comment.