diff --git a/packages/console/src/components/Executions/TaskExecutionsList/MapTaskExecutionDetails.tsx b/packages/console/src/components/Executions/TaskExecutionsList/MapTaskExecutionDetails.tsx index ec65747d5..0acffa816 100644 --- a/packages/console/src/components/Executions/TaskExecutionsList/MapTaskExecutionDetails.tsx +++ b/packages/console/src/components/Executions/TaskExecutionsList/MapTaskExecutionDetails.tsx @@ -35,6 +35,7 @@ export const MapTaskExecutionDetails: React.FC< headerText={headerText} phase={item.phase ?? TaskExecutionPhase.UNDEFINED} logs={item.logs ?? []} + mappedItem={item} /> ); diff --git a/packages/console/src/components/Executions/TaskExecutionsList/TaskExecutionLogsCard.tsx b/packages/console/src/components/Executions/TaskExecutionsList/TaskExecutionLogsCard.tsx index 76f7b881d..34dbde0d9 100644 --- a/packages/console/src/components/Executions/TaskExecutionsList/TaskExecutionLogsCard.tsx +++ b/packages/console/src/components/Executions/TaskExecutionsList/TaskExecutionLogsCard.tsx @@ -40,6 +40,7 @@ interface TaskExecutionLogsCardProps { headerText: string; phase: TaskExecutionPhase; logs: Core.ITaskLog[]; + mappedItem?: any; } export const TaskExecutionLogsCard: React.FC<