Commit fee064be authored by Phil Hughes's avatar Phil Hughes

Fixed modal lists dropdown not updating when list is deleted

parent 8c5e50e1
...@@ -71,10 +71,6 @@ $(() => { ...@@ -71,10 +71,6 @@ $(() => {
Store.addBlankState(); Store.addBlankState();
this.loading = false; this.loading = false;
if (this.state.lists.length > 0) {
ModalStore.store.selectedList = this.state.lists[0];
}
}); });
} }
}); });
......
...@@ -11,9 +11,12 @@ ...@@ -11,9 +11,12 @@
}, },
computed: { computed: {
selected() { selected() {
return this.modal.selectedList; return this.modal.selectedList || this.state.lists[0];
}, },
}, },
destroyed() {
this.modal.selectedList = null;
},
template: ` template: `
<div class="dropdown inline"> <div class="dropdown inline">
<button <button
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
selectedIssues: [], selectedIssues: [],
showAddIssuesModal: false, showAddIssuesModal: false,
activeTab: 'all', activeTab: 'all',
selectedList: {}, selectedList: null,
searchTerm: '', searchTerm: '',
loading: false, loading: false,
loadingNewPage: false, loadingNewPage: false,
......
...@@ -76,6 +76,27 @@ describe 'Issue Boards add issue modal', :feature, :js do ...@@ -76,6 +76,27 @@ describe 'Issue Boards add issue modal', :feature, :js do
end end
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 context 'search' do
it 'returns issues' do it 'returns issues' do
page.within('.add-issues-modal') do page.within('.add-issues-modal') 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