Skip to content

Commit c416921

Browse files
fixed pipeline id wide navigating on specific run
1 parent b333e86 commit c416921

File tree

1 file changed

+4
-4
lines changed
  • src/ui/layouts/pipelines/Pipelines/List/Status

1 file changed

+4
-4
lines changed

src/ui/layouts/pipelines/Pipelines/List/Status/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const Status: React.FC<{ pipeline: TPipeline }> = ({ pipeline }) => {
3737
routePaths.run.pipeline.statistics(
3838
selectedWorkspace,
3939
item.run.id,
40-
item.run.pipeline_id,
40+
pipeline.id,
4141
),
4242
);
4343
}}
@@ -68,7 +68,7 @@ export const Status: React.FC<{ pipeline: TPipeline }> = ({ pipeline }) => {
6868
routePaths.run.pipeline.statistics(
6969
selectedWorkspace,
7070
item.run.id,
71-
item.run.pipeline_id,
71+
pipeline.id,
7272
),
7373
);
7474
}}
@@ -99,7 +99,7 @@ export const Status: React.FC<{ pipeline: TPipeline }> = ({ pipeline }) => {
9999
routePaths.run.pipeline.statistics(
100100
selectedWorkspace,
101101
item.run.id,
102-
item.run.pipeline_id,
102+
pipeline.id,
103103
),
104104
);
105105
}}
@@ -130,7 +130,7 @@ export const Status: React.FC<{ pipeline: TPipeline }> = ({ pipeline }) => {
130130
routePaths.run.pipeline.statistics(
131131
selectedWorkspace,
132132
item.run.id,
133-
item.run.pipeline_id,
133+
pipeline.id,
134134
),
135135
);
136136
}}

0 commit comments

Comments
 (0)