From f02125dd4755df1120eae0469a8344f1fbdabcf2 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 7 Mar 2019 13:03:46 +0900 Subject: Resolve #4437 --- src/client/app/desktop/views/components/note-detail.vue | 4 ++-- src/client/app/desktop/views/components/note.vue | 4 ++-- src/client/app/mobile/views/components/note-detail.vue | 4 ++-- src/client/app/mobile/views/components/note.vue | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) (limited to 'src/client') diff --git a/src/client/app/desktop/views/components/note-detail.vue b/src/client/app/desktop/views/components/note-detail.vue index f4494c395b..bcff8c8774 100644 --- a/src/client/app/desktop/views/components/note-detail.vue +++ b/src/client/app/desktop/views/components/note-detail.vue @@ -129,9 +129,9 @@ export default Vue.extend({ mounted() { // Get replies if (!this.compact) { - this.$root.api('notes/replies', { + this.$root.api('notes/children', { noteId: this.appearNote.id, - limit: 8 + limit: 30 }).then(replies => { this.replies = replies; }); diff --git a/src/client/app/desktop/views/components/note.vue b/src/client/app/desktop/views/components/note.vue index 9dc831db73..7e00087b9f 100644 --- a/src/client/app/desktop/views/components/note.vue +++ b/src/client/app/desktop/views/components/note.vue @@ -123,9 +123,9 @@ export default Vue.extend({ created() { if (this.detail) { - this.$root.api('notes/replies', { + this.$root.api('notes/children', { noteId: this.appearNote.id, - limit: 8 + limit: 30 }).then(replies => { this.replies = replies; }); diff --git a/src/client/app/mobile/views/components/note-detail.vue b/src/client/app/mobile/views/components/note-detail.vue index b6f9dc4434..e14e1beff8 100644 --- a/src/client/app/mobile/views/components/note-detail.vue +++ b/src/client/app/mobile/views/components/note-detail.vue @@ -135,9 +135,9 @@ export default Vue.extend({ methods: { fetchReplies() { if (this.compact) return; - this.$root.api('notes/replies', { + this.$root.api('notes/children', { noteId: this.appearNote.id, - limit: 8 + limit: 30 }).then(replies => { this.replies = replies; }); diff --git a/src/client/app/mobile/views/components/note.vue b/src/client/app/mobile/views/components/note.vue index de556f170c..c207eb10d7 100644 --- a/src/client/app/mobile/views/components/note.vue +++ b/src/client/app/mobile/views/components/note.vue @@ -115,9 +115,9 @@ export default Vue.extend({ created() { if (this.detail) { - this.$root.api('notes/replies', { + this.$root.api('notes/children', { noteId: this.appearNote.id, - limit: 8 + limit: 30 }).then(replies => { this.replies = replies; }); -- cgit v1.2.3-freya