fix(client): ユーザーページのファイル付きTLはリプライも含む

This commit is contained in:
tamaina 2023-02-14 07:25:14 +00:00
parent b7b8fd4b59
commit 57c94a5cf0
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ const pagination = {
limit: 10,
params: computed(() => ({
userId: props.user.id,
includeReplies: include.value === 'replies',
includeReplies: include.value === 'replies' || include.value === 'files',
withFiles: include.value === 'files',
})),
};