summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2016-11-04 22:43:43 +0800
committerLin Jen-Shin <godfat@godfat.org>2016-11-04 22:43:43 +0800
commit99410a4750b514b8d58a6d44f687ef29ecebc7cc (patch)
treed180883a7f4ae577a9bd63afc5c8fdfa2b386408
parentb9b508ad055db7633e44178cb4a00ef934313b04 (diff)
downloadgitlab-ce-show-status-from-branch.tar.gz
Fetch locals to avoid undefined method/local errorshow-status-from-branch
Feedback: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7034/diffs#note_17868074
-rw-r--r--app/views/projects/_last_commit.html.haml1
-rw-r--r--app/views/projects/commits/_commit.html.haml1
-rw-r--r--app/views/projects/commits/_commits.html.haml1
3 files changed, 3 insertions, 0 deletions
diff --git a/app/views/projects/_last_commit.html.haml b/app/views/projects/_last_commit.html.haml
index 8aa503159f9..8e23d51b224 100644
--- a/app/views/projects/_last_commit.html.haml
+++ b/app/views/projects/_last_commit.html.haml
@@ -1,3 +1,4 @@
+- ref = local_assigns.fetch(:ref)
- status = commit.status(ref)
- if status
= link_to builds_namespace_project_commit_path(commit.project.namespace, commit.project, commit), class: "ci-status ci-#{status}" do
diff --git a/app/views/projects/commits/_commit.html.haml b/app/views/projects/commits/_commit.html.haml
index fd70de9c13d..9f80a974d64 100644
--- a/app/views/projects/commits/_commit.html.haml
+++ b/app/views/projects/commits/_commit.html.haml
@@ -1,3 +1,4 @@
+- ref = local_assigns.fetch(:ref)
- if @note_counts
- note_count = @note_counts.fetch(commit.id, 0)
- else
diff --git a/app/views/projects/commits/_commits.html.haml b/app/views/projects/commits/_commits.html.haml
index 943ec24cfb5..48756c68941 100644
--- a/app/views/projects/commits/_commits.html.haml
+++ b/app/views/projects/commits/_commits.html.haml
@@ -1,3 +1,4 @@
+- ref = local_assigns.fetch(:ref)
- commits, hidden = limited_commits(@commits)
- commits.chunk { |c| c.committed_date.in_time_zone.to_date }.each do |day, commits|