From fee064be01e6e37076b9af4028ade12a2ce0180a Mon Sep 17 00:00:00 2001 From: Phil Hughes Date: Fri, 3 Feb 2017 14:48:31 +0000 Subject: [PATCH] Fixed modal lists dropdown not updating when list is deleted --- .../javascripts/boards/boards_bundle.js.es6 | 4 ---- .../components/modal/lists_dropdown.js.es6 | 5 ++++- .../boards/stores/modal_store.js.es6 | 2 +- spec/features/boards/add_issues_modal_spec.rb | 21 +++++++++++++++++++ 4 files changed, 26 insertions(+), 6 deletions(-) diff --git a/app/assets/javascripts/boards/boards_bundle.js.es6 b/app/assets/javascripts/boards/boards_bundle.js.es6 index 4ac91786762..529ea9aec5b 100644 --- a/app/assets/javascripts/boards/boards_bundle.js.es6 +++ b/app/assets/javascripts/boards/boards_bundle.js.es6 @@ -71,10 +71,6 @@ $(() => { Store.addBlankState(); this.loading = false; - - if (this.state.lists.length > 0) { - ModalStore.store.selectedList = this.state.lists[0]; - } }); } }); diff --git a/app/assets/javascripts/boards/components/modal/lists_dropdown.js.es6 b/app/assets/javascripts/boards/components/modal/lists_dropdown.js.es6 index 96f12da3753..3c05120a2da 100644 --- a/app/assets/javascripts/boards/components/modal/lists_dropdown.js.es6 +++ b/app/assets/javascripts/boards/components/modal/lists_dropdown.js.es6 @@ -11,9 +11,12 @@ }, computed: { selected() { - return this.modal.selectedList; + return this.modal.selectedList || this.state.lists[0]; }, }, + destroyed() { + this.modal.selectedList = null; + }, template: `