summaryrefslogtreecommitdiff
path: root/app/helpers/dropdowns_helper.rb
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2016-03-08 09:09:39 +0000
committerPhil Hughes <me@iamphill.com>2016-03-10 13:54:54 +0000
commit8ca880c3b8d677366ed20dd1258a1b780cbd05a8 (patch)
tree04b688d2a0f4cfa80d4cdb79d88d85de60461da4 /app/helpers/dropdowns_helper.rb
parent562a09c1277270a72be580cf04c600e38d0dac06 (diff)
downloadgitlab-ce-8ca880c3b8d677366ed20dd1258a1b780cbd05a8.tar.gz
Correctly fitlers remotely
Diffstat (limited to 'app/helpers/dropdowns_helper.rb')
-rw-r--r--app/helpers/dropdowns_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/dropdowns_helper.rb b/app/helpers/dropdowns_helper.rb
index 5e3ee734314..73b3e70f3ce 100644
--- a/app/helpers/dropdowns_helper.rb
+++ b/app/helpers/dropdowns_helper.rb
@@ -17,7 +17,7 @@ module DropdownsHelper
output += content_tag :div, class: "dropdown-title" do
title_output = content_tag(:span, title)
- title_output += content_tag :button, class: "dropdown-title-button dropdown-menu-close", aria: {label: "close"} do
+ title_output += content_tag :button, class: "dropdown-title-button dropdown-menu-close", aria: {label: "close"}, type: "button" do
icon('times')
end.html_safe
end