diff options
author | Kushal Pandya <kushal@gitlab.com> | 2016-12-23 15:07:12 +0530 |
---|---|---|
committer | Kushal Pandya <kushal@gitlab.com> | 2016-12-31 11:43:08 +0530 |
commit | dd5ffd9ca648dba4c0b58be2172cd14c428fa654 (patch) | |
tree | c83bff9e852b8dacefb3cee11920bde1c8d0eb81 /app/views/projects/_wiki.html.haml | |
parent | 7157f5857a187cfa7011ef7e0077d599e846d452 (diff) | |
download | gitlab-ce-dd5ffd9ca648dba4c0b58be2172cd14c428fa654.tar.gz |
HAMLLint: Fix `ImplicitDiv` offences
Diffstat (limited to 'app/views/projects/_wiki.html.haml')
-rw-r--r-- | app/views/projects/_wiki.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/_wiki.html.haml b/app/views/projects/_wiki.html.haml index f00422dd7c0..41d42740f61 100644 --- a/app/views/projects/_wiki.html.haml +++ b/app/views/projects/_wiki.html.haml @@ -7,7 +7,7 @@ - else - can_create_wiki = can?(current_user, :create_wiki, @project) .project-home-empty{ class: [('row-content-block' if can_create_wiki), ('content-block' unless can_create_wiki)] } - %div.text-center{ class: container_class } + .text-center{ class: container_class } %h4 This project does not have a wiki homepage yet - if can_create_wiki |