From 794dfafbec9216271860dec40c717b89f353f4cf Mon Sep 17 00:00:00 2001 From: Mar0xy Date: Sun, 1 Oct 2023 23:23:42 +0200 Subject: [PATCH] fix: notes and replies not showing replies transfem-org/Sharkey#41 --- packages/frontend/src/pages/user/home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/pages/user/home.vue b/packages/frontend/src/pages/user/home.vue index e2fe884de..a4a4ac2fb 100644 --- a/packages/frontend/src/pages/user/home.vue +++ b/packages/frontend/src/pages/user/home.vue @@ -245,7 +245,7 @@ const pagination = { limit: 10, params: computed(() => ({ userId: props.user.id, - includeReplies: noteview === 'replies' || noteview === 'files', + withReplies: noteview === 'replies' || noteview === 'files', withFiles: noteview === 'files', })), };