From 8b8f645ec031459ae5baec3960476c5b49c5cfc7 Mon Sep 17 00:00:00 2001 From: Clippii Date: Tue, 23 Jun 2026 03:56:48 +0100 Subject: [PATCH] slop --- frontend/src/App.jsx | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 5fe090f..b7d061b 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -5345,7 +5345,7 @@ function TournamentStandings({ standings }) { ) } -function TournamentListColumn({ column, navigate }) { +function TournamentListColumn({ column, navigate, highlight, onHover }) { const [collapsed, setCollapsed] = useState(false) return (
@@ -5361,29 +5361,31 @@ function TournamentListColumn({ column, navigate }) { {collapsed ? null : (
- {column.matches.map((match) => ( - - ))} + {column.matches.map((match) => { + const traced = traceClass(teamsOf(match), highlight) + return ( +
+ +
+ ) + })}
)}
) } -function TournamentListSide({ side, navigate }) { +function TournamentListSide({ side, navigate, highlight, onHover }) { + const active = Boolean(highlight) return (

{side.label}

-
+
{side.columns.map((column) => ( - + ))}
@@ -5391,11 +5393,11 @@ function TournamentListSide({ side, navigate }) { ) } -function TournamentMatchList({ sides, navigate }) { +function TournamentMatchList({ sides, navigate, highlight, onHover }) { return (
{sides.map((side) => ( - + ))}
) @@ -5515,7 +5517,7 @@ function TournamentDetailPage({ tournamentId, navigate }) {
{bracketSides.length ?

Group stage

: null} {hasStandings ? : null} - {listSides.length ? : null} + {listSides.length ? : null}
) : null}