From c39f69e5dd9ca9459f80dbcc6c7faadd8bc6e11e Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 20 Feb 2021 16:20:52 +0900 Subject: [PATCH] =?UTF-8?q?Chat=20UI=E3=81=A7=E3=81=AE=E3=83=81=E3=83=A3?= =?UTF-8?q?=E3=83=B3=E3=83=8D=E3=83=AB=E8=A1=A8=E7=A4=BA=E6=95=B0=E8=AA=BF?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/ui/chat/index.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/client/ui/chat/index.vue b/src/client/ui/chat/index.vue index 1d455927a..dd3c82d8b 100644 --- a/src/client/ui/chat/index.vue +++ b/src/client/ui/chat/index.vue @@ -223,11 +223,12 @@ export default defineComponent({ this.antennas = antennas; }); - os.api('channels/followed').then(channels => { + os.api('channels/followed', { limit: 20 }).then(channels => { this.followedChannels = channels; }); - os.api('channels/featured').then(channels => { + // TODO: pagination + os.api('channels/featured', { limit: 20 }).then(channels => { this.featuredChannels = channels; });