summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <ClemMakesApps@gmail.com>2018-06-05 14:58:00 -0500
committerClement Ho <ClemMakesApps@gmail.com>2018-06-05 14:58:00 -0500
commit6381cf73c893c6e439484696d89c7711419b6247 (patch)
treef6462dbf97cf59593aafb434fc3f5faec00f8ca6
parent538110740acc1768315af097ef74213a6d8953d2 (diff)
downloadgitlab-ce-6381cf73c893c6e439484696d89c7711419b6247.tar.gz
Fix transfer project namespace field
-rw-r--r--app/views/admin/projects/show.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/admin/projects/show.html.haml b/app/views/admin/projects/show.html.haml
index 0a22a142858..ccba1c461fc 100644
--- a/app/views/admin/projects/show.html.haml
+++ b/app/views/admin/projects/show.html.haml
@@ -116,8 +116,8 @@
.card-body
= form_for @project, url: transfer_admin_project_path(@project), method: :put do |f|
.form-group.row
- = f.label :new_namespace_id, "Namespace", class: 'col-form-label col-sm-2'
- .col-sm-10
+ = f.label :new_namespace_id, "Namespace", class: 'col-form-label col-sm-3'
+ .col-sm-9
.dropdown
= dropdown_toggle('Search for Namespace', { toggle: 'dropdown', field_name: 'new_namespace_id' }, { toggle_class: 'js-namespace-select large' })
.dropdown-menu.dropdown-select
@@ -127,7 +127,7 @@
= dropdown_loading
.form-group.row
- .offset-sm-2.col-sm-10
+ .offset-sm-3.col-sm-9
= f.submit 'Transfer', class: 'btn btn-primary'
.card.repository-check