summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorNoriDev <11006910+noridev@users.noreply.github.com>2023-10-27 18:25:04 +0900
committerGitHub <noreply@github.com>2023-10-27 18:25:04 +0900
commit5e76675a0c213c8fa2c7d9527f34306e8225aa04 (patch)
treeb2a3cb7f813173c5af69c89fa7d675c902718a72 /packages
parentchore(frontend): 絵文字名のフィールドでautocapitalizeしないよ... (diff)
downloadmisskey-5e76675a0c213c8fa2c7d9527f34306e8225aa04.tar.gz
misskey-5e76675a0c213c8fa2c7d9527f34306e8225aa04.tar.bz2
misskey-5e76675a0c213c8fa2c7d9527f34306e8225aa04.zip
fix(frontend): ユーザーページの ノート > ファイル付き タブにリプライが表示されてしまう (#12148)
Diffstat (limited to 'packages')
-rw-r--r--packages/frontend/src/pages/user/index.timeline.vue2
1 files changed, 1 insertions, 1 deletions
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',
})),