Skip to content

Commit

Permalink
fix: dynamic parent execution not fetched for some tasks
Browse files Browse the repository at this point in the history
Signed-off-by: Soham <[email protected]>
  • Loading branch information
4nalog committed May 24, 2023
1 parent 6c77dfa commit d2166db
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,10 @@ export const NodeExecutionDetailsContextProvider = ({
}

// look for specific task by nodeId in current execution
if (nodeExecution.metadata?.isDynamic || nodeExecution.dynamicParentNodeId) {
if (
nodeExecution.metadata?.isDynamic ||
nodeExecution.dynamicParentNodeId
) {
details = await getDynamicTasks(nodeExecution);
}
return details;
Expand Down

0 comments on commit d2166db

Please sign in to comment.