diff --git a/client/components/Comment.vue b/client/components/Comment.vue index 3128e3bfb..21764494d 100644 --- a/client/components/Comment.vue +++ b/client/components/Comment.vue @@ -131,8 +131,8 @@ export default Vue.extend({ } }) .then(response => { - this.replies = response.comments; - this.repliesContinuationLink = response.continuation || null; + this.replies = response.data.comments; + this.repliesContinuationLink = response.data.continuation || null; this.repliesLoaded = true; this.loadingReplies = false; }) @@ -157,8 +157,8 @@ export default Vue.extend({ } }) .then(response => { - this.replies = this.replies.concat(response.comments); - this.repliesContinuationLink = response.continuation || null; + this.replies = this.replies.concat(response.data.comments); + this.repliesContinuationLink = response.data.continuation || null; this.repliesContinuationLoading = false; }) .catch(error => { diff --git a/client/components/Settings.vue b/client/components/Settings.vue index 0386b1dee..1c3868e9f 100644 --- a/client/components/Settings.vue +++ b/client/components/Settings.vue @@ -5,6 +5,13 @@