From 1d597a431e50703d1fd36b20cef318d5881b6a6d Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sun, 26 Jan 2025 13:02:39 +0100 Subject: [PATCH] Data/Season: Add race step to substitutions page --- src/routes/data/season/substitutions/+page.svelte | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/routes/data/season/substitutions/+page.svelte b/src/routes/data/season/substitutions/+page.svelte index de391fa..62edf15 100644 --- a/src/routes/data/season/substitutions/+page.svelte +++ b/src/routes/data/season/substitutions/+page.svelte @@ -54,6 +54,11 @@ ); const substitutions_columns: TableColumn[] = [ + { + data_value_name: "expand", + label: "Step", + valuefun: async (value: { race: Race }): Promise => value.race.step.toString(), + }, { data_value_name: "substitute", label: "Substitute",