localized team names
This commit is contained in:
@@ -298,7 +298,7 @@ function SimRow({
|
||||
<span style={{ display: "flex", alignItems: "center", gap: 6, minWidth: 0, flex: 1, justifyContent: "flex-end" }}>
|
||||
<Flag team={home} size={18} />
|
||||
<span style={{ fontWeight: 600, whiteSpace: "nowrap", overflow: "hidden", textOverflow: "ellipsis", maxWidth: 140 }}>
|
||||
{home?.name ?? "—"}
|
||||
{home?.localisedName ?? home?.name ?? "—"}
|
||||
</span>
|
||||
</span>
|
||||
<input
|
||||
@@ -338,7 +338,7 @@ function SimRow({
|
||||
/>
|
||||
<span style={{ display: "flex", alignItems: "center", gap: 6, minWidth: 0, flex: 1 }}>
|
||||
<span style={{ fontWeight: 600, whiteSpace: "nowrap", overflow: "hidden", textOverflow: "ellipsis", maxWidth: 140 }}>
|
||||
{away?.name ?? "—"}
|
||||
{away?.localisedName ?? away?.name ?? "—"}
|
||||
</span>
|
||||
<Flag team={away} size={18} />
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user