summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarie <marie@kaifa.ch>2024-01-02 19:41:09 +0100
committerMarie <marie@kaifa.ch>2024-01-02 19:41:09 +0100
commitc887e4cccbb7a438f0f3deeca9986a7685db5626 (patch)
tree13a2da448fb9ed9dfbb7ae2f9307070578ff9558
parentchore: add locales to i18n (diff)
downloadsharkey-c887e4cccbb7a438f0f3deeca9986a7685db5626.tar.gz
sharkey-c887e4cccbb7a438f0f3deeca9986a7685db5626.tar.bz2
sharkey-c887e4cccbb7a438f0f3deeca9986a7685db5626.zip
fix: user profile timeline selection not working properly
-rw-r--r--packages/frontend/src/pages/user/home.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/user/home.vue b/packages/frontend/src/pages/user/home.vue
index 44a8ca250b..9de42e2f37 100644
--- a/packages/frontend/src/pages/user/home.vue
+++ b/packages/frontend/src/pages/user/home.vue
@@ -279,7 +279,7 @@ const AllPagination = {
params: computed(() => ({
userId: props.user.id,
withRenotes: noteview.value === 'all',
- withReplies: noteview.value === 'all' || noteview.value === 'files',
+ withReplies: noteview.value === 'all',
withChannelNotes: noteview.value === 'all',
withFiles: noteview.value === 'files',
})),