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:
authorLin Jen-Shin <godfat@godfat.org>2016-11-04 17:43:43 +0300
committerLin Jen-Shin <godfat@godfat.org>2016-11-04 17:43:43 +0300
commit99410a4750b514b8d58a6d44f687ef29ecebc7cc (patch)
treed180883a7f4ae577a9bd63afc5c8fdfa2b386408 /app/views/projects/_last_commit.html.haml
parentb9b508ad055db7633e44178cb4a00ef934313b04 (diff)
Fetch locals to avoid undefined method/local error
Feedback: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7034/diffs#note_17868074
Diffstat (limited to 'app/views/projects/_last_commit.html.haml')
-rw-r--r--app/views/projects/_last_commit.html.haml1
1 files changed, 1 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