summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/components/modal/footer.js.es6
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-01-31 10:39:44 +0000
committerFatih Acet <acetfatih@gmail.com>2017-02-03 17:02:44 +0300
commit39fbd18951e7c6bd4b403cd82dd4e008fd00d6fe (patch)
tree0e404b968c955fc80368754e8f08c4baadd81650 /app/assets/javascripts/boards/components/modal/footer.js.es6
parent1b01386a9513ad71f07aab79a29ee1f877db8df6 (diff)
downloadgitlab-ce-39fbd18951e7c6bd4b403cd82dd4e008fd00d6fe.tar.gz
Fixed bug with empty state showing after search
Fixed users href path being incorrect
Diffstat (limited to 'app/assets/javascripts/boards/components/modal/footer.js.es6')
-rw-r--r--app/assets/javascripts/boards/components/modal/footer.js.es63
1 files changed, 1 insertions, 2 deletions
diff --git a/app/assets/javascripts/boards/components/modal/footer.js.es6 b/app/assets/javascripts/boards/components/modal/footer.js.es6
index 566303431f6..2ed81abe625 100644
--- a/app/assets/javascripts/boards/components/modal/footer.js.es6
+++ b/app/assets/javascripts/boards/components/modal/footer.js.es6
@@ -27,8 +27,7 @@
addIssues() {
const list = this.selectedList;
const selectedIssues = ModalStore.getSelectedIssues();
- const issueIds = selectedIssues.filter(issue => issue.selected)
- .map(issue => issue.globalId);
+ const issueIds = selectedIssues.map(issue => issue.globalId);
// Post the data to the backend
this.$http.post(this.bulkUpdatePath, {