Skip to content

Commit

Permalink
executed workflow diagram fix (#1577)
Browse files Browse the repository at this point in the history
  • Loading branch information
soson authored Jul 3, 2024
1 parent 25de43b commit 4852a37
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ const EXECUTED_WORKFLOW_SUBSCRIPTION = gql`
id
version
name
tasksJson
ownerEmail
restartable
hasSchedule
Expand Down Expand Up @@ -545,7 +546,10 @@ const ExecutedWorkflowDetail: FC<Props> = ({ onExecutedOperation }) => {
<TabPanel>
{executedWorkflow.workflowDefinition && (
<WorkflowDiagram
meta={{ ...executedWorkflow.workflowDefinition, tasks: [] }}
meta={{
...executedWorkflow.workflowDefinition,
tasks: executedWorkflow.workflowDefinition.tasksJson,
}}
result={executedWorkflow}
/>
)}
Expand Down

0 comments on commit 4852a37

Please sign in to comment.