From cfee73688cb601331ec905155f122e31543e0c29 Mon Sep 17 00:00:00 2001 From: Erik Vroon Date: Wed, 1 Feb 2023 17:35:28 +0100 Subject: [PATCH] Constrain tournament logo width --- frontend/src/pages/tournaments/[id]/dashboard.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/tournaments/[id]/dashboard.tsx b/frontend/src/pages/tournaments/[id]/dashboard.tsx index cd90125b..82ae7847 100644 --- a/frontend/src/pages/tournaments/[id]/dashboard.tsx +++ b/frontend/src/pages/tournaments/[id]/dashboard.tsx @@ -14,7 +14,12 @@ function TournamentLogo({ tournamentDataFull }: { tournamentDataFull: Tournament return ; } return tournamentDataFull.logo_path ? ( - + ) : null; }