Skip to content

Commit

Permalink
Revert unneeded changes
Browse files Browse the repository at this point in the history
  • Loading branch information
exoego committed Nov 8, 2023
1 parent 7ce15ff commit e801620
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions digdag-ui/console.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1347,7 +1347,6 @@ class SessionView extends React.Component<SessionViewProps, typeof SessionViewSt
const { lastAttempt, project, workflow } = session
const canRetryAll = attemptCanRetryAll(lastAttempt)
const canResume = attemptCanResume(lastAttempt)

return (
<div className='session'>
<h2 className='d-inline-flex'>
Expand Down Expand Up @@ -1885,11 +1884,7 @@ class AttemptTasksView extends React.Component<AttemptTasksViewProps> {
if (!this.ignoreLastFetch) {
const tasks = Array.from(taskMap.values())
const done = tasks.every(task => taskDone(task))
this.setState({
sessionRunning: false,
tasks: taskMap,
done
})
this.setState({ tasks: taskMap, done })
}
})
}
Expand Down

0 comments on commit e801620

Please sign in to comment.