From f5f2ae3a843c588e66c2e4580a066df0f8e75dda Mon Sep 17 00:00:00 2001 From: Arun Jain Date: Fri, 19 Jun 2026 16:36:13 +0530 Subject: [PATCH] fix: update navigation path for linked CI details in CINode component --- src/components/workflowEditor/nodes/CINode.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/workflowEditor/nodes/CINode.tsx b/src/components/workflowEditor/nodes/CINode.tsx index 0c90efede0..ff79ca6201 100644 --- a/src/components/workflowEditor/nodes/CINode.tsx +++ b/src/components/workflowEditor/nodes/CINode.tsx @@ -36,7 +36,7 @@ export class CINode extends Component { // stopPropagation to stop redirection to ci-details e.stopPropagation() e.preventDefault() - this.props.navigate(`${URLS.LINKED_CI_DETAILS}/${this.props.id}`) + this.props.navigate(`${URLS.APP_WORKFLOW_CONFIG}/${URLS.LINKED_CI_DETAILS}/${this.props.id}`) } onClickAddNode = (event: any) => {