We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 904a044 commit 1d5a068Copy full SHA for 1d5a068
js_modules/dagster-ui/packages/ui-core/src/runs/useRunsForTimeline.tsx
@@ -507,6 +507,7 @@ export const useRunsForTimeline = ({
507
508
const jobName = isAdHoc ? 'Ad hoc materializations' : pipeline.name;
509
510
+ addedJobKeys.add(jobKey);
511
const jobRuns = Object.values(runsByJobKey[jobKey] || {});
512
if (!jobTicks.length && !jobRuns.length) {
513
continue;
@@ -515,7 +516,6 @@ export const useRunsForTimeline = ({
515
516
const runs = [...jobRuns, ...jobTicks];
517
518
let row = jobsWithCompletedRunsAndOngoingRuns[jobKey];
- addedJobKeys.add(jobKey);
519
if (row) {
520
row = {...row, runs};
521
} else {
0 commit comments