From ec87c7933bae22972a944d7f17b30fd9cf6354d0 Mon Sep 17 00:00:00 2001 From: Shivanand Sonnad Date: Tue, 29 Oct 2024 16:55:26 +0000 Subject: [PATCH] fix: [AH-592]: use pipeline execution id instead of execution name (#2902) * fix: [AH-592]: use pipeline execution id instead of execution name --- .../components/DeploymentsTable/DeploymentsTableCells.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/src/ar/pages/version-details/DockerVersion/components/DeploymentsTable/DeploymentsTableCells.tsx b/web/src/ar/pages/version-details/DockerVersion/components/DeploymentsTable/DeploymentsTableCells.tsx index 42fb535eb..c5af7acf0 100644 --- a/web/src/ar/pages/version-details/DockerVersion/components/DeploymentsTable/DeploymentsTableCells.tsx +++ b/web/src/ar/pages/version-details/DockerVersion/components/DeploymentsTable/DeploymentsTableCells.tsx @@ -94,7 +94,7 @@ export const ServiceListCell: CellType = ({ row }) => { export const DeploymentPipelineCell: CellType = ({ row }) => { const { original } = row - const { pipelineId, lastPipelineExecutionName } = original || {} + const { pipelineId, lastPipelineExecutionId } = original || {} const { getString } = useStrings() const { scope } = useAppStore() const { getRouteToPipelineExecutionView } = useParentUtils() @@ -107,14 +107,14 @@ export const DeploymentPipelineCell: CellType = ({ row }) => { orgIdentifier: scope.orgIdentifier, projectIdentifier: scope.projectIdentifier, pipelineIdentifier: defaultTo(pipelineId, ''), - executionIdentifier: defaultTo(lastPipelineExecutionName, ''), + executionIdentifier: defaultTo(lastPipelineExecutionId, ''), module: 'cd' })}> - {lastPipelineExecutionName} + {lastPipelineExecutionId} ) : ( - {lastPipelineExecutionName} + {lastPipelineExecutionId} )}