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:
authorKushal Pandya <kushal@gitlab.com>2016-12-23 13:27:41 +0300
committerKushal Pandya <kushal@gitlab.com>2016-12-31 09:13:08 +0300
commit598d8cab324782906c84e830b5e880949c0c7a83 (patch)
tree284da689b5e9e3750b54bcf781c2401fb7336f52 /app/views/projects/forks/index.html.haml
parent6f6f546bc23fa6d5b2ee6a41cf8cded243b8d962 (diff)
HAMLLint: Fix `SpaceBeforeScript` offences
Diffstat (limited to 'app/views/projects/forks/index.html.haml')
-rw-r--r--app/views/projects/forks/index.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/forks/index.html.haml b/app/views/projects/forks/index.html.haml
index 5ee3979c7e7..1f2b0a89afe 100644
--- a/app/views/projects/forks/index.html.haml
+++ b/app/views/projects/forks/index.html.haml
@@ -1,7 +1,7 @@
.top-area
.nav-text
- full_count_title = "#{@public_forks_count} public and #{@private_forks_count} private"
- == #{pluralize(@total_forks_count, 'fork')}: #{full_count_title}
+ = "#{pluralize(@total_forks_count, 'fork')}: #{full_count_title}"
.nav-controls
= form_tag request.original_url, method: :get, class: 'project-filter-form', id: 'project-filter-form' do |f|