diff --git a/src/components/InfoColumns/index.tsx b/src/components/InfoColumns/index.tsx index ff00a9653..7cea560d3 100644 --- a/src/components/InfoColumns/index.tsx +++ b/src/components/InfoColumns/index.tsx @@ -31,7 +31,7 @@ export const InfoColumns = ({ infoRows }: InfoColumnsProps) => { {text} diff --git a/src/pages/pipeline-details/components/Overview/hooks/useInfoRows.tsx b/src/pages/pipeline-details/components/Overview/hooks/useInfoRows.tsx index 4742d7a0c..c81d320bc 100644 --- a/src/pages/pipeline-details/components/Overview/hooks/useInfoRows.tsx +++ b/src/pages/pipeline-details/components/Overview/hooks/useInfoRows.tsx @@ -75,10 +75,7 @@ export const useInfoRows = (): InfoRow[] | null => { ), }, - { - label: 'Tasks completed', - text: statusObject.message?.split('Tasks Completed: ')[1], - }, + { label: 'Started at', text: statusObject.startedAt, @@ -92,6 +89,13 @@ export const useInfoRows = (): InfoRow[] | null => { text: statusObject.updatedLast, }, ], + [ + { + label: 'Message', + text: statusObject.message, + columnXs: 12, + }, + ], [ { label: 'Labels',