Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ export const CreateStepFooter: FC<Props> = ({ jobId, jobType, showProgress }) =>
jobStats.state === DATA_FRAME_TASK_STATE.STOPPED
) {
clearInterval(interval);
setJobFinished(true);
// Check job has started. Jobs that fail to start will also have STOPPED state
setJobFinished(
progressStats.currentPhase === progressStats.totalPhases &&
progressStats.progress === 100
);
}
} else {
clearInterval(interval);
Expand Down