Skip to content

Commit

Permalink
fix(standingsRow): trunc season points instead of rounding (#348)
Browse files Browse the repository at this point in the history
Signed-off-by: James Harris <[email protected]>
  • Loading branch information
wopian authored Jun 19, 2023
1 parent c9a9623 commit 53d5515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/StandingsRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
const steamId = user.steamId
const points = isSeasonStandings
? Math.round(user.totalPoints * 10)
? Math.trunc(user.totalPoints * 10)
: user.totalPoints
</script>

Expand Down

0 comments on commit 53d5515

Please sign in to comment.