diff options
author | Douwe Maan <douwe@gitlab.com> | 2016-10-19 20:21:10 +0000 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2016-10-31 21:21:52 -0700 |
commit | 2e0bd8088c69e33f29cfc94e892683f322d5159e (patch) | |
tree | faad273ea88a3db3c81ba0a7992225d375ef1349 /app | |
parent | 7429b21d3260edb25e9d3f98713d163f97b23e28 (diff) | |
download | gitlab-ce-2e0bd8088c69e33f29cfc94e892683f322d5159e.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
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/cycle_analytics/show.html.haml | 4 |
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') |