feat: show excluded rounds count in player history accordion (#21)

This commit is contained in:
Samuel Enocsson
2026-05-25 09:34:42 +02:00
parent f4c5e963d2
commit 0beeb98002
10 changed files with 38 additions and 132 deletions
+6
View File
@@ -124,6 +124,12 @@ function renderSparkline(values, opts) {
<dd><%= player.rating - player.stdDev %><%= player.rating + player.stdDev %></dd>
</div>
<% } %>
<% if (player.excludedRoundsCount != null && player.rating != null) { %>
<div>
<dt>Excluded rounds</dt>
<dd><%= player.excludedRoundsCount %></dd>
</div>
<% } %>
</dl>
</div>
</div>