diff --git a/IceGlass-iOS/Views/GameRow.swift b/IceGlass-iOS/Views/GameRow.swift index 8499d30..81d71d9 100644 --- a/IceGlass-iOS/Views/GameRow.swift +++ b/IceGlass-iOS/Views/GameRow.swift @@ -47,7 +47,7 @@ struct GameRow: View { .lineLimit(1) .fixedSize() - Text(showScore ? scoreText : "- : -") + Text(showScore ? scoreText : "-:-") .font(.title3.monospaced()) .fontWeight(.bold) .foregroundStyle(.secondary) @@ -102,7 +102,7 @@ struct GameRow: View { private var scoreText: String { let a = game.awayTeam.score ?? 0 let h = game.homeTeam.score ?? 0 - return "\(a) : \(h)" + return "\(a):\(h)" } private func open() {