From 56b1606d1ab4a8c06d5c8a88671e87b81bfe4109 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Fri, 27 Dec 2024 19:16:14 +0100 Subject: [PATCH] Data/Season: Fix team dropdown icon dimensions --- src/routes/data/season/+page.svelte | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/routes/data/season/+page.svelte b/src/routes/data/season/+page.svelte index 589c7aa..548a89a 100644 --- a/src/routes/data/season/+page.svelte +++ b/src/routes/data/season/+page.svelte @@ -18,6 +18,8 @@ RACE_PICTOGRAM_WIDTH, TEAM_BANNER_HEIGHT, TEAM_BANNER_WIDTH, + TEAM_LOGO_HEIGHT, + TEAM_LOGO_WIDTH, } from "$lib/config"; let { data, form }: { data: PageData; form: ActionData } = $props(); @@ -61,8 +63,8 @@ label: team.name, value: team.id, icon_url: team.logo_url, - icon_width: TEAM_BANNER_WIDTH, - icon_height: TEAM_BANNER_HEIGHT, + icon_width: TEAM_LOGO_WIDTH, + icon_height: TEAM_LOGO_HEIGHT, }); });