Skip to content

Commit

Permalink
hotfix limit leaderboard entries to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Sep 9, 2024
1 parent c1571f6 commit 85105f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/teerdays.vue
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@
</thead>
<tbody class="text-left">
<tr
v-for="(entry, index) in allBonds"
v-for="(entry, index) in allBonds.slice(0, 10)"
:key="index"
:class="{
'bg-gray-700': index % 2 === 0, // Jede zweite Zeile grau
Expand Down

0 comments on commit 85105f4

Please sign in to comment.