This is an automated email from the ASF dual-hosted git repository.

klesh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


The following commit(s) were added to refs/heads/main by this push:
     new bbab2f3fb pr-type/bug-fix Added Blueprint title in pipelines run 
history table (#8390)
bbab2f3fb is described below

commit bbab2f3fba355ed9239bf7deeff0ea54ac23b65a
Author: Veet Moradiya <[email protected]>
AuthorDate: Mon Apr 21 14:57:47 2025 +0530

    pr-type/bug-fix Added Blueprint title in pipelines run history table (#8390)
    
    * blueprint name added in pipeline table
    
    * name from Blueprint name
    
    ---------
    
    Co-authored-by: Klesh Wong <[email protected]>
---
 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 ca16ed890..4d3eefa99 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: 'Blueprint Name',
+            dataIndex: 'name',
+            key: 'name',
+            align: 'center',
+          },
           {
             title: 'Status',
             dataIndex: 'status',

Reply via email to