From 9797171a996a5448256c7a52e96e85ee0921c75f Mon Sep 17 00:00:00 2001 From: veetmoradiya3628 Date: Fri, 18 Apr 2025 02:01:39 +0530 Subject: [PATCH 1/2] blueprint name added in pipeline table --- config-ui/src/routes/pipeline/components/table.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config-ui/src/routes/pipeline/components/table.tsx b/config-ui/src/routes/pipeline/components/table.tsx index ca16ed890bf..3fa94b948ee 100644 --- a/config-ui/src/routes/pipeline/components/table.tsx +++ b/config-ui/src/routes/pipeline/components/table.tsx @@ -75,6 +75,12 @@ export const PipelineTable = ({ loading, dataSource, pagination }: Props) => { key: 'id', align: 'center', }, + { + title: 'Name', + dataIndex: 'name', + key: 'name', + align: 'center', + }, { title: 'Status', dataIndex: 'status', From e0227d7a65551f4a1697c728d8dbc36caf52c1c7 Mon Sep 17 00:00:00 2001 From: veetmoradiya3628 Date: Fri, 18 Apr 2025 02:02:28 +0530 Subject: [PATCH 2/2] name from Blueprint name --- config-ui/src/routes/pipeline/components/table.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config-ui/src/routes/pipeline/components/table.tsx b/config-ui/src/routes/pipeline/components/table.tsx index 3fa94b948ee..4d3eefa99fd 100644 --- a/config-ui/src/routes/pipeline/components/table.tsx +++ b/config-ui/src/routes/pipeline/components/table.tsx @@ -76,7 +76,7 @@ export const PipelineTable = ({ loading, dataSource, pagination }: Props) => { align: 'center', }, { - title: 'Name', + title: 'Blueprint Name', dataIndex: 'name', key: 'name', align: 'center',