Resets issue boards assignee dropdown

Closes #26514
This commit is contained in:
Phil Hughes 2017-01-12 10:22:51 -05:00
parent 5a41d92b9d
commit 6e08d5dc5e
4 changed files with 44 additions and 1 deletions

View File

@ -30,6 +30,10 @@
detail: {
handler () {
this.issue = this.detail.issue;
if (this.showSidebar) {
$('.js-user-search', this.$el).data('glDropdown').clearMenu();
}
},
deep: true
},

View File

@ -512,12 +512,17 @@
// Append the menu into the dropdown
GitLabDropdown.prototype.appendMenu = function(html) {
return this.clearMenu().append(html);
};
GitLabDropdown.prototype.clearMenu = function() {
var selector;
selector = '.dropdown-content';
if (this.dropdown.find(".dropdown-toggle-page").length) {
selector = ".dropdown-page-one .dropdown-content";
}
return $(selector, this.dropdown).empty().append(html);
return $(selector, this.dropdown).empty();
};
GitLabDropdown.prototype.renderItem = function(data, group, index) {

View File

@ -0,0 +1,4 @@
---
title: Resets assignee dropdown when sidebar is open
merge_request:
author:

View File

@ -141,6 +141,36 @@ describe 'Issue Boards', feature: true, js: true do
end
end
end
it 'resets assignee dropdown' do
page.within(first('.board')) do
first('.card').click
end
page.within('.assignee') do
click_link 'Edit'
wait_for_ajax
page.within('.dropdown-menu-user') do
click_link user.name
wait_for_vue_resource
end
expect(page).to have_content(user.name)
end
page.within(first('.board')) do
find('.card:nth-child(2)').click
end
page.within('.assignee') do
click_link 'Edit'
expect(page).not_to have_selector('.is-active')
end
end
end
context 'milestone' do