Skip to content

Commit

Permalink
fix: Display correct group status in between steps
Browse files Browse the repository at this point in the history
  • Loading branch information
Ushie committed Jan 16, 2025
1 parent 9921793 commit 706a547
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ fun StepGroupCard(
steps.all { it.status == StepStatus.QUEUED } -> StepStatus.QUEUED
steps.all { it.status == StepStatus.SUCCESSFUL } -> StepStatus.SUCCESSFUL
steps.any { it.status == StepStatus.ONGOING } -> StepStatus.ONGOING
else -> StepStatus.UNSUCCESSFUL
steps.any { it.status == StepStatus.UNSUCCESSFUL } -> StepStatus.UNSUCCESSFUL
else -> StepStatus.ONGOING
}

Column(
Expand Down

0 comments on commit 706a547

Please sign in to comment.