More accurate round robin teams per group text for clarity

This commit is contained in:
Kalle 2026-03-21 13:14:41 +02:00
parent 42fbf60a3e
commit 3fc71191d7

View File

@ -299,7 +299,7 @@ function TournamentFormatBracketSelector({
{bracket.type === "round_robin" ? (
<div>
<Label htmlFor="teamsPerGroup">Teams per group</Label>
<Label htmlFor="teamsPerGroup">Max participants per group</Label>
<select
value={
bracket.settings.teamsPerGroup ??
@ -323,6 +323,10 @@ function TournamentFormatBracketSelector({
<option value="5">5</option>
<option value="6">6</option>
</select>
<FormMessage type="info">
Participants are distributed equally, so groups may have fewer
than selected
</FormMessage>
</div>
) : null}