Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2016-03-08 12:09:39 +0300
committerPhil Hughes <me@iamphill.com>2016-03-10 16:54:54 +0300
commit8ca880c3b8d677366ed20dd1258a1b780cbd05a8 (patch)
tree04b688d2a0f4cfa80d4cdb79d88d85de60461da4 /app/helpers/dropdowns_helper.rb
parent562a09c1277270a72be580cf04c600e38d0dac06 (diff)
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