summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorJacob Schatz <jschatz@gitlab.com>2016-06-10 15:23:39 +0000
committerJacob Schatz <jschatz@gitlab.com>2016-06-10 15:23:39 +0000
commit7aa67688127a4ff4553ae6f8ff66e9757275ea39 (patch)
treeff2a6e85f6fa7782c253bcada4af160e83e47d9e /app/views
parent133d5c1c64b9d9265736a8b6277fcd73730c6612 (diff)
parentd301791c2aa101b68f9b5abda24f20dc24a85830 (diff)
downloadgitlab-ce-7aa67688127a4ff4553ae6f8ff66e9757275ea39.tar.gz
Merge branch 'label-filter-fix' into 'master'
Fixed issue where label filtering didnt work ## What does this MR do? The filterable option was missing which meant labels in the dropdown couldn't be filtered. This fixes that. ## What are the relevant issue numbers? Closes #18375 See merge request !4556
Diffstat (limited to 'app/views')
-rw-r--r--app/views/shared/issuable/_label_page_default.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/issuable/_label_page_default.html.haml b/app/views/shared/issuable/_label_page_default.html.haml
index 4e280c371ac..0acb8253139 100644
--- a/app/views/shared/issuable/_label_page_default.html.haml
+++ b/app/views/shared/issuable/_label_page_default.html.haml
@@ -4,7 +4,7 @@
- filter_placeholder = local_assigns.fetch(:filter_placeholder, 'Search labels')
.dropdown-page-one
= dropdown_title(title)
- = dropdown_filter(filter_placeholder)
+ = dropdown_filter(filter_placeholder, search_id: "label-name")
= dropdown_content
- if @project && show_footer
= dropdown_footer do