Skip to content

Commit

Permalink
feat(ui): also display if count is 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Skraye committed Nov 8, 2023
1 parent 930be8f commit f479385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/executions/ForEachStatus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="m-3">
<div v-for="state in State.allStates()" :key="state.key">
<div
v-if="subflowsStatus[state.key]"
v-if="subflowsStatus[state.key] >= 0"
class="d-flex"
>
<div class="d-flex align-items-center col-1">
Expand Down

0 comments on commit f479385

Please sign in to comment.