fix(frontend): ユーザーページの ノート > ファイル付き タブにリプライが表示されてしまう (#12148)

This commit is contained in:
NoriDev 2023-10-27 18:25:04 +09:00 committed by GitHub
parent 1d9b5ae1ba
commit 5e76675a0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -37,7 +37,7 @@ const pagination = {
params: computed(() => ({
userId: props.user.id,
withRenotes: include.value === 'all',
withReplies: include.value === 'all' || include.value === 'files',
withReplies: include.value === 'all',
withChannelNotes: include.value === 'all',
withFiles: include.value === 'files',
})),