diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2019-03-27 11:14:33 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2019-03-27 11:14:33 +0000 |
commit | 1cb82c4de9001a0682fb6e4970cc2b5a270e2555 (patch) | |
tree | 2e7faf3c0ea762603ce0d007d79bea64910dea10 /app/views/projects/artifacts | |
parent | 0610bb091766d3bb935fc10898dd66bc6f76b1c5 (diff) | |
download | gitlab-ce-1cb82c4de9001a0682fb6e4970cc2b5a270e2555.tar.gz |
Fixes link in artifacts breadcrumb
The link to the job page was not set properly,
with this commit it links to the correct job page.
Diffstat (limited to 'app/views/projects/artifacts')
-rw-r--r-- | app/views/projects/artifacts/browse.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/artifacts/browse.html.haml b/app/views/projects/artifacts/browse.html.haml index 09295940529..6a7cb1499c5 100644 --- a/app/views/projects/artifacts/browse.html.haml +++ b/app/views/projects/artifacts/browse.html.haml @@ -4,7 +4,7 @@ = render "projects/jobs/header" - add_to_breadcrumbs(s_('CICD|Jobs'), project_jobs_path(@project)) -- add_to_breadcrumbs("##{@build.id}", project_jobs_path(@project)) +- add_to_breadcrumbs("##{@build.id}", project_job_path(@project, @build)) .tree-holder .nav-block |