Merge branch '24774-clear-the-Labels-dropdown-search-filter' into 'master'
Clear "Labels" dropdown search filter after selection Closes #24774 See merge request gitlab-org/gitlab-ce!17393
This commit is contained in:
commit
566dc70b50
3 changed files with 23 additions and 0 deletions
|
@ -242,10 +242,16 @@ export default class LabelsSelect {
|
|||
filterable: true,
|
||||
selected: $dropdown.data('selected') || [],
|
||||
toggleLabel: function(selected, el) {
|
||||
var $dropdownParent = $dropdown.parent();
|
||||
var $dropdownInputField = $dropdownParent.find('.dropdown-input-field');
|
||||
var isSelected = el !== null ? el.hasClass('is-active') : false;
|
||||
var title = selected.title;
|
||||
var selectedLabels = this.selected;
|
||||
|
||||
if ($dropdownInputField.length && $dropdownInputField.val().length) {
|
||||
$dropdownParent.find('.dropdown-input-clear').trigger('click');
|
||||
}
|
||||
|
||||
if (selected.id === 0) {
|
||||
this.selected = [];
|
||||
return 'No Label';
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Clear the Labels dropdown search filter after a selection is made
|
||||
merge_request: 17393
|
||||
author: Andrew Torres
|
||||
type: changed
|
|
@ -189,6 +189,18 @@ describe 'New/edit issue', :js do
|
|||
expect(find('.js-label-select')).to have_content('Labels')
|
||||
end
|
||||
|
||||
it 'clears label search input field when a label is selected' do
|
||||
click_button 'Labels'
|
||||
|
||||
page.within '.dropdown-menu-labels' do
|
||||
search_field = find('input[type="search"]')
|
||||
|
||||
search_field.set(label2.title)
|
||||
click_link label2.title
|
||||
expect(search_field.value).to eq ''
|
||||
end
|
||||
end
|
||||
|
||||
it 'correctly updates the selected user when changing assignee' do
|
||||
click_button 'Unassigned'
|
||||
|
||||
|
|
Loading…
Reference in a new issue