diff options
| author | Mike Greiling <mike@pixelcog.com> | 2016-10-03 16:14:17 -0500 |
|---|---|---|
| committer | Alfredo Sumaran <alfredo@gitlab.com> | 2016-12-10 00:16:22 +0000 |
| commit | f612cf4db171262d54be827bab7c3cbf65354879 (patch) | |
| tree | 5a2fde2516625ee69f19a0276074b9607c562267 | |
| parent | 3f768f9a14ad90bbd79d384e3c287db4feea3e35 (diff) | |
| download | gitlab-ce-cherry-pick-f8be5909.tar.gz | |
fix broken string interpolationcherry-pick-f8be5909
| -rw-r--r-- | app/views/projects/commit/_change.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/commit/_change.html.haml b/app/views/projects/commit/_change.html.haml index f6e3d5e76f5..59af45ee1ed 100644 --- a/app/views/projects/commit/_change.html.haml +++ b/app/views/projects/commit/_change.html.haml @@ -13,7 +13,7 @@ %a.close{href: "#", "data-dismiss" => "modal"} × %h3.page-title== #{label} this #{commit.change_type_title(current_user)} .modal-body - = form_tag send("#{type.underscore}_namespace_project_commit_path", @project.namespace, @project, commit.id), method: :post, remote: false, class: 'form-horizontal js-#{type}-form js-requires-input' do + = form_tag send("#{type.underscore}_namespace_project_commit_path", @project.namespace, @project, commit.id), method: :post, remote: false, class: "form-horizontal js-#{type}-form js-requires-input" do .form-group.branch = label_tag 'target_branch', target_label, class: 'control-label' .col-sm-10 |
