Skip to content

Commit

Permalink
Fix: UI task position (#3470)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeWallis42 authored Dec 5, 2024
1 parent f1b4215 commit 1f0ee52
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,8 @@ function StageCreation({ isOpen }: { isOpen?: boolean }): JSX.Element {
</TasksOverview.TaskInfo>
<TasksOverview.DetailsProgress>
<TasksOverview.TaskSize
completed={planApply.stageCreation.total_tasks}
total={planApply.stageCreation.num_tasks}
completed={planApply.stageCreation.num_tasks}
total={planApply.stageCreation.total_tasks}
unit="task"
/>
<TasksOverview.TaskDivider />
Expand Down Expand Up @@ -514,8 +514,8 @@ function StagePromote(): JSX.Element {
</TasksOverview.TaskInfo>
<TasksOverview.DetailsProgress>
<TasksOverview.TaskSize
completed={planApply.stagePromote.total_tasks}
total={planApply.stagePromote.num_tasks}
completed={planApply.stagePromote.num_tasks}
total={planApply.stagePromote.total_tasks}
unit="task"
/>
<TasksOverview.TaskDivider />
Expand Down

0 comments on commit 1f0ee52

Please sign in to comment.