diff options
| author | NoriDev <11006910+noridev@users.noreply.github.com> | 2023-10-27 18:25:04 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-27 18:25:04 +0900 |
| commit | 5e76675a0c213c8fa2c7d9527f34306e8225aa04 (patch) | |
| tree | b2a3cb7f813173c5af69c89fa7d675c902718a72 | |
| parent | chore(frontend): 絵文字名のフィールドでautocapitalizeしないよ... (diff) | |
| download | misskey-5e76675a0c213c8fa2c7d9527f34306e8225aa04.tar.gz misskey-5e76675a0c213c8fa2c7d9527f34306e8225aa04.tar.bz2 misskey-5e76675a0c213c8fa2c7d9527f34306e8225aa04.zip | |
fix(frontend): ユーザーページの ノート > ファイル付き タブにリプライが表示されてしまう (#12148)
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | packages/frontend/src/pages/user/index.timeline.vue | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3decae2b9c..17874bba2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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のキャッシュをオフにできるように diff --git a/packages/frontend/src/pages/user/index.timeline.vue b/packages/frontend/src/pages/user/index.timeline.vue index 724fb4d11c..6cf5bcf91f 100644 --- a/packages/frontend/src/pages/user/index.timeline.vue +++ b/packages/frontend/src/pages/user/index.timeline.vue @@ -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', })), |