From 8570da33172260593dc94156a7e6a29771e2258a Mon Sep 17 00:00:00 2001 From: Diego Imbert Date: Mon, 9 Feb 2026 10:56:02 +0100 Subject: [PATCH] nit --- .../src/lib/components/runs/BatchReRunOptionsPane.svelte | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/lib/components/runs/BatchReRunOptionsPane.svelte b/frontend/src/lib/components/runs/BatchReRunOptionsPane.svelte index 7a3d2d6051..38ed34d435 100644 --- a/frontend/src/lib/components/runs/BatchReRunOptionsPane.svelte +++ b/frontend/src/lib/components/runs/BatchReRunOptionsPane.svelte @@ -160,12 +160,14 @@ ) const jobGroups = resource(() => readFieldsRecursively(selectedIds), fetchJobGroups) + + let hideRunnableSelector = $derived(!(jobGroups.current?.length !== 1 && selectedIds.length > 1))
- {#if jobGroups.current?.length !== 1 && selectedIds.length > 1} + {#if !hideRunnableSelector} {/if} - +