diff options
author | Kushal Pandya <kushal@gitlab.com> | 2017-01-13 11:07:21 -0500 |
---|---|---|
committer | Kushal Pandya <kushal@gitlab.com> | 2017-01-24 10:09:28 -0800 |
commit | fa21471af626d1bfdb738e1a77e0d5b7fc3d85a3 (patch) | |
tree | 72d74b32f268127f5ce79f68bfe693e1e75b8bee /app/views/ci | |
parent | eeb68676331afeca4208084d0dcec81bc5e9472c (diff) | |
download | gitlab-ce-fa21471af626d1bfdb738e1a77e0d5b7fc3d85a3.tar.gz |
HAMLLint: Fix `UnnecessaryInterpolation` offences
Diffstat (limited to 'app/views/ci')
-rw-r--r-- | app/views/ci/lints/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/ci/lints/show.html.haml b/app/views/ci/lints/show.html.haml index 95eb9a57152..b0bee1c6204 100644 --- a/app/views/ci/lints/show.html.haml +++ b/app/views/ci/lints/show.html.haml @@ -13,7 +13,7 @@ .file-holder .file-title.clearfix Content of .gitlab-ci.yml - #ci-editor.ci-editor #{@content} + #ci-editor.ci-editor= @content = text_area_tag(:content, @content, class: 'hidden form-control span1', rows: 7, require: true) .col-sm-12 .pull-left.prepend-top-10 |