summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2016-10-19 20:21:10 +0000
committerRémy Coutable <remy@rymai.me>2016-10-31 13:12:25 +0100
commit4e4f0d69515344efb20880f40c59b23925122824 (patch)
tree5d61f511ecca44f2bdd04b8a3f07500a34ca04f5
parentc4cb9630f64b4aa7dbba33360194e43570b2642c (diff)
downloadgitlab-ce-4e4f0d69515344efb20880f40c59b23925122824.tar.gz
Merge branch 'adam-fix-ruby-2-1-cycle-analytics' into 'master'
Use Hash rocket syntax to fix cycle analytics under Ruby 2.1 Refers to #23510 See merge request !6977 Signed-off-by: Rémy Coutable <remy@rymai.me>
-rw-r--r--app/views/projects/cycle_analytics/show.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/cycle_analytics/show.html.haml b/app/views/projects/cycle_analytics/show.html.haml
index 7f346df8797..b647882efa0 100644
--- a/app/views/projects/cycle_analytics/show.html.haml
+++ b/app/views/projects/cycle_analytics/show.html.haml
@@ -2,10 +2,10 @@
- page_title "Cycle Analytics"
= render "projects/pipelines/head"
-#cycle-analytics{class: container_class, "v-cloak" => "true", data: { request_path: project_cycle_analytics_path(@project)}}
+#cycle-analytics{class: container_class, "v-cloak" => "true", data: { request_path: project_cycle_analytics_path(@project) }}
.bordered-box.landing.content-block{"v-if" => "!isHelpDismissed"}
- = icon('times', class: 'dismiss-icon', "@click": "dismissLanding()")
+ = icon('times', class: 'dismiss-icon', "@click" => "dismissLanding()")
.row
.col-sm-3.col-xs-12.svg-container
= custom_icon('icon_cycle_analytics_splash')