Skip to content

Commit

Permalink
fix(ui): artifact download links (#5826)
Browse files Browse the repository at this point in the history
  • Loading branch information
sguiheux authored May 26, 2021
1 parent 266f0bc commit 2c2861b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class WorkflowRunArtifactListComponent implements OnInit, OnDestroy {
uiArt.size = a.size;
uiArt.md5 = a.md5sum;
uiArt.type = 'file';
uiArt.link = `./cdscdn/item/artifact/${a.download_hash}/download`;
uiArt.link = `./cdsapi/workflow/artifact/${a.download_hash}`;
return uiArt;
});
this.uiArtifacts.push(...uiArtifacts)
Expand Down

0 comments on commit 2c2861b

Please sign in to comment.