diff --git a/templates/components/rounds_list.templ b/templates/components/rounds_list.templ index 995e32a..982d696 100644 --- a/templates/components/rounds_list.templ +++ b/templates/components/rounds_list.templ @@ -14,19 +14,19 @@ templ RoundsList(game skat.Game) { { player.Name } } Value - Action + for i, round := range game.Rounds { - { fmt.Sprintf("%v", i+1) } + { fmt.Sprintf("%v", i+1) } for _, player := range game.Players { { formatRoundScore(round.GetRoundScore(player)) } } { fmt.Sprintf("%v", round.Value) } -