diff options
| author | Marie <marie@kaifa.ch> | 2024-01-02 19:41:09 +0100 |
|---|---|---|
| committer | Marie <marie@kaifa.ch> | 2024-01-02 19:41:09 +0100 |
| commit | c887e4cccbb7a438f0f3deeca9986a7685db5626 (patch) | |
| tree | 13a2da448fb9ed9dfbb7ae2f9307070578ff9558 | |
| parent | chore: add locales to i18n (diff) | |
| download | sharkey-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.vue | 2 |
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', })), |