diff --git a/core/src/main/java/io/kestra/core/models/flows/FlowForExecution.java b/core/src/main/java/io/kestra/core/models/flows/FlowForExecution.java index b144c56537a..20e2d903869 100644 --- a/core/src/main/java/io/kestra/core/models/flows/FlowForExecution.java +++ b/core/src/main/java/io/kestra/core/models/flows/FlowForExecution.java @@ -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; @@ -25,6 +26,7 @@ public class FlowForExecution extends AbstractFlow { List errors; @Valid + @JsonProperty("finally") List _finally; @Valid diff --git a/ui/src/components/executions/outputs/Wrapper.vue b/ui/src/components/executions/outputs/Wrapper.vue index 98ba8ce430b..a693b85b5fa 100644 --- a/ui/src/components/executions/outputs/Wrapper.vue +++ b/ui/src/components/executions/outputs/Wrapper.vue @@ -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; });