|
|
|
|
@ -106,7 +106,7 @@ struct TableStructureView: View { |
|
|
|
|
|
|
|
|
|
if structurePreset != .doubleGroupStage { |
|
|
|
|
LabeledContent { |
|
|
|
|
StepperView(count: $qualifiedPerGroupStage, minimum: 1, maximum: (teamsPerGroupStage-1)) |
|
|
|
|
StepperView(count: $qualifiedPerGroupStage, minimum: 0, maximum: (teamsPerGroupStage-1)) |
|
|
|
|
} label: { |
|
|
|
|
Text("Qualifié\(qualifiedPerGroupStage.pluralSuffix) par poule") |
|
|
|
|
} |
|
|
|
|
@ -445,8 +445,8 @@ struct TableStructureView: View { |
|
|
|
|
teamsPerGroupStage = 2 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if qualifiedPerGroupStage < 1 { |
|
|
|
|
qualifiedPerGroupStage = 1 |
|
|
|
|
if qualifiedPerGroupStage < 0 { |
|
|
|
|
qualifiedPerGroupStage = 0 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if groupStageAdditionalQualified < 0 { |
|
|
|
|
|