mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-22 20:45:13 +00:00
fix(client): ユーザーページのファイル付きTLはリプライも含む
This commit is contained in:
parent
b7b8fd4b59
commit
57c94a5cf0
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ const pagination = {
|
||||||
limit: 10,
|
limit: 10,
|
||||||
params: computed(() => ({
|
params: computed(() => ({
|
||||||
userId: props.user.id,
|
userId: props.user.id,
|
||||||
includeReplies: include.value === 'replies',
|
includeReplies: include.value === 'replies' || include.value === 'files',
|
||||||
withFiles: include.value === 'files',
|
withFiles: include.value === 'files',
|
||||||
})),
|
})),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue