Skip to content
Snippets Groups Projects
Commit fee064be authored by Phil Hughes's avatar Phil Hughes
Browse files

Fixed modal lists dropdown not updating when list is deleted

parent 8c5e50e1
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -71,10 +71,6 @@ $(() => {
 
Store.addBlankState();
this.loading = false;
if (this.state.lists.length > 0) {
ModalStore.store.selectedList = this.state.lists[0];
}
});
}
});
Loading
Loading
Loading
Loading
@@ -11,9 +11,12 @@
},
computed: {
selected() {
return this.modal.selectedList;
return this.modal.selectedList || this.state.lists[0];
},
},
destroyed() {
this.modal.selectedList = null;
},
template: `
<div class="dropdown inline">
<button
Loading
Loading
Loading
Loading
@@ -11,7 +11,7 @@
selectedIssues: [],
showAddIssuesModal: false,
activeTab: 'all',
selectedList: {},
selectedList: null,
searchTerm: '',
loading: false,
loadingNewPage: false,
Loading
Loading
Loading
Loading
@@ -76,6 +76,27 @@ describe 'Issue Boards add issue modal', :feature, :js do
end
end
 
context 'list dropdown' do
it 'resets after deleting list' do
page.within('.add-issues-modal') do
expect(find('.add-issues-footer')).to have_button(planning.title)
click_button 'Cancel'
end
first('.board-delete').click
click_button('Add issues')
wait_for_vue_resource
page.within('.add-issues-modal') do
expect(find('.add-issues-footer')).not_to have_button(planning.title)
expect(find('.add-issues-footer')).to have_button(label.title)
end
end
end
context 'search' do
it 'returns issues' do
page.within('.add-issues-modal') do
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment