Skip to content

Commit

Permalink
feat(local_users): fix elo rank
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheeg committed Oct 15, 2023
1 parent 9aeb817 commit 0d5d2a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/profile_card.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ p {
<h1>Play info</h1>
<p class="play_style">Style: <%= (user.style || '').toUpperCase() %></p>
<p class="pb">PB: <%= pb %></p>
<p class="pb">Elo: <%= elo_rating %><% if (user.elo_rank) { %>( user.elo_rank )<% } %></p>
<p class="pb">Elo: <%= elo_rating %><% if (user.elo_rank) { %>( <%= user.elo_rank %> )<% } %></p>
</section>

<section id="interests">
Expand Down

0 comments on commit 0d5d2a8

Please sign in to comment.