diff options
| author | 鴇峰 朔華 <160555157+sakuhanight@users.noreply.github.com> | 2025-03-03 17:28:29 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-03 08:28:29 +0000 |
| commit | a4711ab4c11357c8ffa586dbec56043a0b0f33e0 (patch) | |
| tree | c1cd5bb684012373641c472262123e9db901d555 /packages/frontend/src/pages/note.vue | |
| parent | fix(frontend): 投稿フォームがオーバーフローした際にスク... (diff) | |
| download | misskey-a4711ab4c11357c8ffa586dbec56043a0b0f33e0.tar.gz misskey-a4711ab4c11357c8ffa586dbec56043a0b0f33e0.tar.bz2 misskey-a4711ab4c11357c8ffa586dbec56043a0b0f33e0.zip | |
enhance(frontend): チャンネル投稿をユーザーページと前後ノートに表示する (#15532)
* enhance(frontend): ユーザーページで常にチャンネル投稿が含まれるように
* enhance(frontend): ノート詳細の前後の投稿にチャンネル投稿を含めるように
* ログイン有無の削除
Diffstat (limited to 'packages/frontend/src/pages/note.vue')
| -rw-r--r-- | packages/frontend/src/pages/note.vue | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/frontend/src/pages/note.vue b/packages/frontend/src/pages/note.vue index 0791c1343b..2613437d2b 100644 --- a/packages/frontend/src/pages/note.vue +++ b/packages/frontend/src/pages/note.vue @@ -87,6 +87,7 @@ const prevUserPagination: Paging = { params: computed(() => note.value ? ({ userId: note.value.userId, untilId: note.value.id, + withChannelNotes: true, }) : undefined), }; @@ -97,6 +98,8 @@ const nextUserPagination: Paging = { params: computed(() => note.value ? ({ userId: note.value.userId, sinceId: note.value.id, + withChannelNotes: true, + includeSensitiveChannel: $i != null, }) : undefined), }; |