From 5c1abc3bbfda6be79fbfb002c93c96b71154e771 Mon Sep 17 00:00:00 2001 From: Mark Anderson-Trocme Date: Mon, 16 Jan 2023 14:34:09 -0500 Subject: [PATCH] Feature: Make workflow a link in CircleCI plugin Signed-off-by: Mark Anderson-Trocme --- .../src/components/BuildsPage/lib/CITable/CITable.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx b/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx index adc8a569bb..8f99f1f69c 100644 --- a/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx +++ b/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx @@ -212,6 +212,10 @@ const generatedColumns: TableColumn[] = [ { title: 'Workflow', field: 'workflow.name', + highlight: true, + render: (row: Partial) => ( + {row?.workflow?.name} + ), }, { title: 'Actions',