Runnable Jobs
- {#each innerJobs as job}
+ {#each newJobs as job}
-
- {job.id}
- {job.script_path}
- {job.tag}
+ {job.prior.id}
+ {job.prior.script_path}
+ {job.prior.tag}
{/each}
@@ -79,25 +102,35 @@
Job Configurations
+
- {#each innerJobs as job}
+ {#each newJobs as job}
{#if job.isSelected}
-
{job.id} Config
+
{job.prior.id} Config
+
+
diff --git a/frontend/src/lib/components/runs/RunsTable.svelte b/frontend/src/lib/components/runs/RunsTable.svelte
index fc62d3a57c..1d4df56c51 100644
--- a/frontend/src/lib/components/runs/RunsTable.svelte
+++ b/frontend/src/lib/components/runs/RunsTable.svelte
@@ -186,17 +186,20 @@
}
}
}
+
+ let batchModalIsOpen = false
computeHeight()} />
-
+
+
{#if isSelectingJobsToCancel && cancelableJobCount != 0}