Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzciński <ayufan@ayufan.eu>2015-11-12 12:41:54 +0300
committerKamil Trzciński <ayufan@ayufan.eu>2015-11-12 12:41:54 +0300
commit7ec7970b14985603a2a6301707566b17f0c88773 (patch)
treea206ebe075a5ef0265eed517b36e52226d0e2853
parent9573cf6cc708b914204a4c2ec59dc599d291cf02 (diff)
parent73f8763e6a249c4c4be731673556e7e2d625ee42 (diff)
Merge branch 'fix_project_build_links' into 'master'
Fix "Other Builds" links in Projects Build page Found a minor issue where all links in the "Other Builds" section of Project Builds was linking to the same build #. This should fix it. See merge request !1785
-rw-r--r--app/views/projects/builds/show.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/builds/show.html.haml b/app/views/projects/builds/show.html.haml
index 7661452e6ec..907e1ce10bd 100644
--- a/app/views/projects/builds/show.html.haml
+++ b/app/views/projects/builds/show.html.haml
@@ -171,7 +171,7 @@
%td
= ci_icon_for_status(build.status)
%td
- = link_to namespace_project_build_path(@project.namespace, @project, @build) do
+ = link_to namespace_project_build_path(@project.namespace, @project, build) do
- if build.name
= build.name
- else