summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/components/modal
diff options
context:
space:
mode:
authorEric Eastwood <contact@ericeastwood.com>2017-12-15 02:31:14 -0600
committerEric Eastwood <contact@ericeastwood.com>2018-01-02 18:01:42 -0600
commit4ffc863afdfd6f350a7c457247d2d0c7b71402b4 (patch)
treeecf1a520a35264a3fed3f8e5322777f6b6dac924 /app/assets/javascripts/boards/components/modal
parentac9e65a9b9fdc8964f4891eedd51ed57aa5ee22b (diff)
downloadgitlab-ce-4ffc863afdfd6f350a7c457247d2d0c7b71402b4.tar.gz
Switch boards to Axios
Diffstat (limited to 'app/assets/javascripts/boards/components/modal')
-rw-r--r--app/assets/javascripts/boards/components/modal/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/boards/components/modal/index.js b/app/assets/javascripts/boards/components/modal/index.js
index d2044f20ebe..d825ff38587 100644
--- a/app/assets/javascripts/boards/components/modal/index.js
+++ b/app/assets/javascripts/boards/components/modal/index.js
@@ -89,7 +89,7 @@ gl.issueBoards.IssuesModal = Vue.extend({
page: this.page,
per: this.perPage,
}))
- .then(resp => resp.json())
+ .then(res => res.data)
.then((data) => {
if (clearIssues) {
this.issues = [];