summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2025-03-03 21:05:50 +0900
committerGitHub <noreply@github.com>2025-03-03 21:05:50 +0900
commitadf22143aa249cb52b72dca3ce0547c6b969d0cb (patch)
tree7909d7148f7fd05b6f52259f23bfaad4a2220194 /packages/frontend/src/pages
parentfix(deps): update [frontend] update dependencies (#15587) (diff)
downloadmisskey-adf22143aa249cb52b72dca3ce0547c6b969d0cb.tar.gz
misskey-adf22143aa249cb52b72dca3ce0547c6b969d0cb.tar.bz2
misskey-adf22143aa249cb52b72dca3ce0547c6b969d0cb.zip
Revert "enhance(frontend): チャンネル投稿をユーザーページと前後ノートに表示する" (#15589)
* Revert "enhance(frontend): チャンネル投稿をユーザーページと前後ノートに表示する (#15532)" This reverts commit a4711ab4c11357c8ffa586dbec56043a0b0f33e0. * Update CHANGELOG.md
Diffstat (limited to 'packages/frontend/src/pages')
-rw-r--r--packages/frontend/src/pages/note.vue3
-rw-r--r--packages/frontend/src/pages/user/index.timeline.vue2
2 files changed, 1 insertions, 4 deletions
diff --git a/packages/frontend/src/pages/note.vue b/packages/frontend/src/pages/note.vue
index 2613437d2b..0791c1343b 100644
--- a/packages/frontend/src/pages/note.vue
+++ b/packages/frontend/src/pages/note.vue
@@ -87,7 +87,6 @@ const prevUserPagination: Paging = {
params: computed(() => note.value ? ({
userId: note.value.userId,
untilId: note.value.id,
- withChannelNotes: true,
}) : undefined),
};
@@ -98,8 +97,6 @@ const nextUserPagination: Paging = {
params: computed(() => note.value ? ({
userId: note.value.userId,
sinceId: note.value.id,
- withChannelNotes: true,
- includeSensitiveChannel: $i != null,
}) : undefined),
};
diff --git a/packages/frontend/src/pages/user/index.timeline.vue b/packages/frontend/src/pages/user/index.timeline.vue
index 543dce8656..49d015a530 100644
--- a/packages/frontend/src/pages/user/index.timeline.vue
+++ b/packages/frontend/src/pages/user/index.timeline.vue
@@ -43,7 +43,7 @@ const pagination = computed(() => tab.value === 'featured' ? {
userId: props.user.id,
withRenotes: tab.value === 'all',
withReplies: tab.value === 'all',
- withChannelNotes: true,
+ withChannelNotes: tab.value === 'all',
withFiles: tab.value === 'files',
},
});