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} - +