diff --git a/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx b/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx index 82ee144a24..a9d19bf6db 100644 --- a/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx +++ b/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx @@ -211,7 +211,9 @@ const generatedColumns: TableColumn[] = [ run {relativeTimeTo(row?.startTime)} - took {durationHumanized(row?.startTime, row?.stopTime)} + {row?.stopTime + ? `took ${durationHumanized(row?.startTime, row?.stopTime)}` + : ''} ),