Skip to content
Snippets Groups Projects
Unverified Commit 5e76675a authored by NoriDev's avatar NoriDev Committed by GitHub
Browse files

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

parent 1d9b5ae1
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@
https://misskey-hub.net/docs/advanced/publish-on-your-website.html
- Feat: AiScript関数`Mk:nyaize()`が追加されました
- Fix: 投稿フォームでのユーザー変更がプレビューに反映されない問題を修正
- Fix: ユーザーページの ノート > ファイル付き タブにリプライが表示されてしまう
### Server
- Enhance: RedisへのTLのキャッシュをオフにできるように
......
......@@ -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',
})),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment