Commit 6e08d5dc authored by Phil Hughes's avatar Phil Hughes

Resets issue boards assignee dropdown

Closes #26514
parent 5a41d92b
...@@ -30,6 +30,10 @@ ...@@ -30,6 +30,10 @@
detail: { detail: {
handler () { handler () {
this.issue = this.detail.issue; this.issue = this.detail.issue;
if (this.showSidebar) {
$('.js-user-search', this.$el).data('glDropdown').clearMenu();
}
}, },
deep: true deep: true
}, },
......
...@@ -512,12 +512,17 @@ ...@@ -512,12 +512,17 @@
// Append the menu into the dropdown // Append the menu into the dropdown
GitLabDropdown.prototype.appendMenu = function(html) { GitLabDropdown.prototype.appendMenu = function(html) {
return this.clearMenu().append(html);
};
GitLabDropdown.prototype.clearMenu = function() {
var selector; var selector;
selector = '.dropdown-content'; selector = '.dropdown-content';
if (this.dropdown.find(".dropdown-toggle-page").length) { if (this.dropdown.find(".dropdown-toggle-page").length) {
selector = ".dropdown-page-one .dropdown-content"; 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) { GitLabDropdown.prototype.renderItem = function(data, group, index) {
......
---
title: Resets assignee dropdown when sidebar is open
merge_request:
author:
...@@ -141,6 +141,36 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -141,6 +141,36 @@ describe 'Issue Boards', feature: true, js: true do
end end
end 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 end
context 'milestone' do context 'milestone' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment