Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorEduardo Mejía <eduar.mreyes@gmail.com>2019-07-12 15:27:17 +0300
committerKushal Pandya <kushalspandya@gmail.com>2019-07-12 15:27:17 +0300
commit7905f45f9ca9c5d9d2799e8100c3e509bf9c47d7 (patch)
tree9a905aaa64bf66ef22bd2377eafdd9c4d999318f /app
parent158f318971a512ff2cfb59a3d270c10bf8e36ed8 (diff)
change the use of boardService in favor of boardsStore on footer for the board component
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/boards/components/modal/footer.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/boards/components/modal/footer.vue b/app/assets/javascripts/boards/components/modal/footer.vue
index a1d634c8f19..eea0fb71c1a 100644
--- a/app/assets/javascripts/boards/components/modal/footer.vue
+++ b/app/assets/javascripts/boards/components/modal/footer.vue
@@ -41,7 +41,7 @@ export default {
const req = this.buildUpdateRequest(list);
// Post the data to the backend
- gl.boardService.bulkUpdate(issueIds, req).catch(() => {
+ boardsStore.bulkUpdate(issueIds, req).catch(() => {
Flash(__('Failed to update issues, please try again.'));
selectedIssues.forEach(issue => {