From 74868f0288ff538fba99e8954845922ff83caa06 Mon Sep 17 00:00:00 2001 From: yuchenglong Date: Tue, 13 Jan 2026 11:55:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=AF=94=E8=B5=9B=E7=BB=93?= =?UTF-8?q?=E6=9E=9C=E6=98=BE=E7=A4=BA=E9=80=BB=E8=BE=91=E5=B9=B6=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E5=88=86=E6=95=B0=E5=AD=97=E4=BD=93=E5=A4=A7=E5=B0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/match-detail/score-header.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/match-detail/score-header.tsx b/components/match-detail/score-header.tsx index cf1de4a..e82c8ca 100644 --- a/components/match-detail/score-header.tsx +++ b/components/match-detail/score-header.tsx @@ -67,7 +67,7 @@ export function ScoreHeader({ data, isDark, topInset }: ScoreHeaderProps) { - {match.eventFinalResult && match.eventFinalResult !== "" + {match.eventFinalResult && match.eventFinalResult !== "-" ? match.eventFinalResult : "0 - 0"} @@ -181,7 +181,7 @@ const styles = StyleSheet.create({ }, scoreValue: { color: "#000", - fontSize: 32, + fontSize: 19, fontWeight: "bold", letterSpacing: 2, },