Skip to content

Commit

Permalink
fix: truncate points per round display in highscores table
Browse files Browse the repository at this point in the history
  • Loading branch information
sgfost committed Oct 16, 2023
1 parent 5367c2f commit 9f2a4c6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions client/src/components/stats/SoloHighscoresTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
<template #cell(rank)="data">
{{ "#" + data.item.rank }}
</template>
<template #cell(pointsPerRound)="data">
{{ data.item.pointsPerRound.toFixed(2) }}
</template>
</b-table>
</template>

Expand Down

0 comments on commit 9f2a4c6

Please sign in to comment.