Skip to content

Commit

Permalink
feat: change order statistics columns
Browse files Browse the repository at this point in the history
  • Loading branch information
SchutteJan committed Sep 14, 2024
1 parent 830b48a commit 979b3a6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions frontend/src/routes/me/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,14 @@
<thead>
<tr>
<th>Area</th>
<th>Total</th>
<th>Visits</th>
<th>Visits/Total</th>
</tr>
</thead>
<tbody>
{#each zipVistsByArea(visitStats.total_bars_by_area, visitStats.bar_visits_by_area).entries() as [name, stat]}
<tr>
<td>{name}</td>
<td>{stat.total}</td>
<td>{stat.visited}</td>
<td>{stat.visited}/{stat.total}</td>
</tr>
{/each}
</tbody>
Expand Down

0 comments on commit 979b3a6

Please sign in to comment.