summaryrefslogtreecommitdiff
path: root/app/views/shared/projects
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2016-02-17 18:05:40 +0100
committerJames Lopez <james@jameslopez.es>2016-02-17 18:05:40 +0100
commit4b650fac76c35bd8666d7a53ad6ff02f256ad64d (patch)
treecda2723be0e843c7cbb8c6cc3d152b341a02b60a /app/views/shared/projects
parentdd68d100e659d315ce6b21dac914beeda0fd1d4c (diff)
downloadgitlab-ce-4b650fac76c35bd8666d7a53ad6ff02f256ad64d.tar.gz
updated fix based on MR feedback
Diffstat (limited to 'app/views/shared/projects')
-rw-r--r--app/views/shared/projects/_project.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/projects/_project.html.haml b/app/views/shared/projects/_project.html.haml
index 00bf9dcd2d5..900d7939ae9 100644
--- a/app/views/shared/projects/_project.html.haml
+++ b/app/views/shared/projects/_project.html.haml
@@ -4,7 +4,7 @@
- ci = false unless local_assigns[:ci] == true
- skip_namespace = false unless local_assigns[:skip_namespace] == true
- css_class = '' unless local_assigns[:css_class]
-- show_last_commit_as_description = false unless local_assigns[:show_last_commit_as_description] == true
+- show_last_commit_as_description = false unless local_assigns[:show_last_commit_as_description] == true && !project.empty_repo? && project.commit
- css_class += " no-description" if project.description.blank? && !show_last_commit_as_description
- ci_commit = project.ci_commit(project.commit.sha) if ci && !project.empty_repo? && project.commit
- cache_key = [project.namespace, project, controller.controller_name, controller.action_name, current_application_settings, 'v2.2']