Skip to content

Commit

Permalink
WebHost: Fixes multi-tracker checks sorting. (ArchipelagoMW#1893)
Browse files Browse the repository at this point in the history
  • Loading branch information
korydondzila authored Jun 28, 2023
1 parent 99656bf commit 76cace7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion WebHostLib/templates/multiTracker.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@
{% block custom_table_row scoped %}
{# implement this block in game-specific multi trackers #}
{% endblock %}
<td class="center-column">{{ checks["Total"] }}/{{ checks_in_area[player]["Total"] }}</td>
<td class="center-column" data-sort="{{ checks["Total"] }}">
{{ checks["Total"] }}/{{ checks_in_area[player]["Total"] }}
</td>
<td class="center-column">{{ percent_total_checks_done[team][player] }}</td>
{%- if activity_timers[team, player] -%}
<td class="center-column">{{ activity_timers[team, player].total_seconds() }}</td>
Expand Down

0 comments on commit 76cace7

Please sign in to comment.