diff options
author | Connor Shea <connor.james.shea@gmail.com> | 2016-08-01 16:07:08 -0600 |
---|---|---|
committer | Connor Shea <connor.james.shea@gmail.com> | 2016-08-17 09:23:43 -0600 |
commit | f4eda673c5d7f98919e74a4542e13ac1bcfdd76d (patch) | |
tree | b92405cf2e249682a80fc98fc9edc763c77907c6 /app/views/shared | |
parent | 41d598ce5004d23c6af7961284cfd9055297ba09 (diff) | |
download | gitlab-ce-f4eda673c5d7f98919e74a4542e13ac1bcfdd76d.tar.gz |
Make the ref-selector function work properly for branch selection.
Diffstat (limited to 'app/views/shared')
-rw-r--r-- | app/views/shared/_ref_switcher.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/_ref_switcher.html.haml b/app/views/shared/_ref_switcher.html.haml index ea7162d4d63..9a8252ab087 100644 --- a/app/views/shared/_ref_switcher.html.haml +++ b/app/views/shared/_ref_switcher.html.haml @@ -6,7 +6,7 @@ - @options && @options.each do |key, value| = hidden_field_tag key, value, id: nil .dropdown - = dropdown_toggle dropdown_toggle_text, { toggle: "dropdown", selected: dropdown_toggle_text, ref: @ref, refs_url: refs_namespace_project_path(@project.namespace, @project) }, { toggle_class: "js-project-refs-dropdown" } + = dropdown_toggle dropdown_toggle_text, { toggle: "dropdown", selected: dropdown_toggle_text, ref: @ref, refs_url: refs_namespace_project_path(@project.namespace, @project), field_name: 'ref', submit_form_on_click: true }, { toggle_class: "js-project-refs-dropdown" } .dropdown-menu.dropdown-menu-selectable{ class: ("dropdown-menu-align-right" if local_assigns[:align_right]) } = dropdown_title "Switch branch/tag" = dropdown_filter "Search branches and tags" |