diff options
author | Clement Ho <ClemMakesApps@gmail.com> | 2018-04-11 14:36:17 -0500 |
---|---|---|
committer | Clement Ho <ClemMakesApps@gmail.com> | 2018-04-11 14:36:17 -0500 |
commit | e44ceb96d0875ffbe2959cd17a87f02b2b815547 (patch) | |
tree | e464e0454bb72c2cba1d63a7d2ffa3b5e3eeac4b /app/views/projects/branches | |
parent | 94a051cf5489061460b6ffa70a232e5e7cbb1eba (diff) | |
download | gitlab-ce-e44ceb96d0875ffbe2959cd17a87f02b2b815547.tar.gz |
[skip ci] .control-label to .col-form-label
Diffstat (limited to 'app/views/projects/branches')
-rw-r--r-- | app/views/projects/branches/new.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/branches/new.html.haml b/app/views/projects/branches/new.html.haml index 3e12d951ebf..d77ef749d79 100644 --- a/app/views/projects/branches/new.html.haml +++ b/app/views/projects/branches/new.html.haml @@ -11,12 +11,12 @@ = form_tag namespace_project_branches_path, method: :post, id: "new-branch-form", class: "form-horizontal js-create-branch-form js-requires-input" do .form-group - = label_tag :branch_name, nil, class: 'control-label' + = label_tag :branch_name, nil, class: 'col-form-label' .col-sm-10 = text_field_tag :branch_name, params[:branch_name], required: true, autofocus: true, class: 'form-control js-branch-name' .form-text.text-muted.text-danger.js-branch-name-error .form-group - = label_tag :ref, 'Create from', class: 'control-label' + = label_tag :ref, 'Create from', class: 'col-form-label' .col-sm-10.create-from .dropdown = hidden_field_tag :ref, default_ref |