Skip to content

Commit

Permalink
fix(frontend): ユーザーページの ノート > ファイル付き タブにリプライが表示されてしまう (#12148)
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev authored Oct 27, 2023
1 parent 1d9b5ae commit 5e76675
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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のキャッシュをオフにできるように
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/user/index.timeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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',
})),
Expand Down

0 comments on commit 5e76675

Please sign in to comment.