Skip to content

Commit

Permalink
fix(ui): missing icons for finally
Browse files Browse the repository at this point in the history
relate to #5643
  • Loading branch information
tchiotludo committed Jan 14, 2025
1 parent fbfab90 commit 52aba32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package io.kestra.core.models.flows;

import com.fasterxml.jackson.annotation.JsonProperty;
import io.kestra.core.models.tasks.TaskForExecution;
import io.kestra.core.models.triggers.AbstractTriggerForExecution;
import io.kestra.core.utils.ListUtils;
Expand All @@ -25,6 +26,7 @@ public class FlowForExecution extends AbstractFlow {
List<TaskForExecution> errors;

@Valid
@JsonProperty("finally")
List<TaskForExecution> _finally;

@Valid
Expand Down
1 change: 1 addition & 0 deletions ui/src/components/executions/outputs/Wrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,7 @@
getTaskIcons(store.state.execution?.flow?.tasks || [], mapped);
getTaskIcons(store.state.execution?.flow?.errors || [], mapped);
getTaskIcons(store.state.execution?.flow?.finally || [], mapped);
return mapped;
});
Expand Down

0 comments on commit 52aba32

Please sign in to comment.