Skip to content

Commit

Permalink
fix(editor): Fix execution filter count
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik committed Apr 12, 2024
1 parent 2bb3f5c commit 50cdb51
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const countSelectedFilterProps = computed(() => {
if (filter.status !== 'all') {
count++;
}
if (filter.workflowId !== 'all') {
if (filter.workflowId !== 'all' && props.workflows.length) {
count++;
}
if (!isEmpty(filter.tags)) {
Expand Down

0 comments on commit 50cdb51

Please sign in to comment.