fix: user profile timeline selection not working properly

This commit is contained in:
Marie 2024-01-02 19:41:09 +01:00
parent bdd7583ff5
commit c887e4cccb
No known key found for this signature in database
GPG Key ID: 56569BBE47D2C828
1 changed files with 1 additions and 1 deletions

View File

@ -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',
})),