We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c861210 commit ca75965Copy full SHA for ca75965
src/routes/v2/projects/[projectId]/workflows/[workflowId]/+page.svelte
@@ -515,10 +515,7 @@
515
const submitted = Object.values(statuses).filter((s) => s.status === 'submitted');
516
if (submitted.length > 0 || selectedSubmittedJob?.status === 'submitted') {
517
window.clearTimeout(statusWatcherTimer);
518
- statusWatcherTimer = window.setTimeout(
519
- loadJobsStatus,
520
- submitted.length > 0 ? updateJobsInterval : 0
521
- );
+ statusWatcherTimer = window.setTimeout(loadJobsStatus, updateJobsInterval);
522
} else {
523
await reloadSelectedDataset();
524
selectedSubmittedJob = undefined;
0 commit comments