|
|
|
@ -78,7 +78,7 @@ struct MatchSummaryView: View { |
|
|
|
HStack { |
|
|
|
HStack { |
|
|
|
if matchViewStyle != .sectionedStandardStyle { |
|
|
|
if matchViewStyle != .sectionedStandardStyle { |
|
|
|
if let roundTitle { |
|
|
|
if let roundTitle { |
|
|
|
Text(roundTitle) |
|
|
|
Text(roundTitle).fontWeight(.semibold) |
|
|
|
} |
|
|
|
} |
|
|
|
Text(matchTitle) |
|
|
|
Text(matchTitle) |
|
|
|
} |
|
|
|
} |
|
|
|
@ -86,6 +86,8 @@ struct MatchSummaryView: View { |
|
|
|
if let courtName { |
|
|
|
if let courtName { |
|
|
|
Spacer() |
|
|
|
Spacer() |
|
|
|
Text(courtName) |
|
|
|
Text(courtName) |
|
|
|
|
|
|
|
.foregroundStyle(.gray) |
|
|
|
|
|
|
|
.font(.caption) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
.lineLimit(1) |
|
|
|
.lineLimit(1) |
|
|
|
|