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:
authorSean McGivern <sean@mcgivern.me.uk>2018-09-03 11:32:35 +0300
committerSean McGivern <sean@mcgivern.me.uk>2018-09-03 11:32:35 +0300
commitfebdd56008b99aa232173050eab7c03230692919 (patch)
tree87d7f6511fe5c0fb309601117347a3fb45a1e841 /app/views/layouts/explore.html.haml
parente349c0c92e2deb016e1ca49e336a0d4689478ea0 (diff)
parent94531f76d470189c50e679c671ff5430d18a88ba (diff)
Merge branch 'rs-haml-lint-useless-assignment' into 'master'
Enable `Lint/UselessAssignment` for haml-lint See merge request gitlab-org/gitlab-ce!21457
Diffstat (limited to 'app/views/layouts/explore.html.haml')
-rw-r--r--app/views/layouts/explore.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/layouts/explore.html.haml b/app/views/layouts/explore.html.haml
index 2ab9e55441b..80bda34a3f5 100644
--- a/app/views/layouts/explore.html.haml
+++ b/app/views/layouts/explore.html.haml
@@ -1,5 +1,5 @@
-- page_title = _("Explore")
+- page_title _("Explore")
- unless current_user
- - header_title = _("Explore GitLab"), explore_root_path
+ - header_title _("Explore GitLab"), explore_root_path
= render template: "layouts/application"