Skip to content

Commit 2c2861b

Browse files
authored
fix(ui): artifact download links (#5826)
1 parent 266f0bc commit 2c2861b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/app/views/workflow/run/node/artifact/artifact.list.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export class WorkflowRunArtifactListComponent implements OnInit, OnDestroy {
101101
uiArt.size = a.size;
102102
uiArt.md5 = a.md5sum;
103103
uiArt.type = 'file';
104-
uiArt.link = `./cdscdn/item/artifact/${a.download_hash}/download`;
104+
uiArt.link = `./cdsapi/workflow/artifact/${a.download_hash}`;
105105
return uiArt;
106106
});
107107
this.uiArtifacts.push(...uiArtifacts)

0 commit comments

Comments
 (0)