From f36d88246a3f5204777ff04778d953f6d040d500 Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 3 Sep 2019 07:15:53 +0900 Subject: [PATCH] Fetch more reactins --- .../app/common/views/components/reactions-viewer.reaction.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client/app/common/views/components/reactions-viewer.reaction.vue b/src/client/app/common/views/components/reactions-viewer.reaction.vue index 12388d982..c06430e5e 100644 --- a/src/client/app/common/views/components/reactions-viewer.reaction.vue +++ b/src/client/app/common/views/components/reactions-viewer.reaction.vue @@ -101,7 +101,8 @@ export default Vue.extend({ openDetails() { if (this.$root.isMobile) return; this.$root.api('notes/reactions', { - noteId: this.note.id + noteId: this.note.id, + limit: 30 }).then((reactions: any[]) => { const users = reactions.filter(x => x.type === this.reaction) .sort((a, b) => new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime())