Revert "enhance(frontend): チャンネル投稿をユーザーページと前後ノートに表示する" (#15589)
* Revert "enhance(frontend): チャンネル投稿をユーザーページと前後ノートに表示する (#15532)" This reverts commit a4711ab4c11357c8ffa586dbec56043a0b0f33e0. * Update CHANGELOG.md
This commit is contained in:
parent
a17acf647b
commit
adf22143aa
@ -6,7 +6,6 @@
|
|||||||
|
|
||||||
### Client
|
### Client
|
||||||
- Enhance: モデレーターがセンシティブ設定を変更する際に確認ダイアログを出すように
|
- Enhance: モデレーターがセンシティブ設定を変更する際に確認ダイアログを出すように
|
||||||
- Enhance: ユーザーページのノート一覧と前後のノート表示でチャンネルのノートを含めるように
|
|
||||||
- Enhance: 「UIのアニメーションを減らす」で画面上のエフェクトも減らせるように
|
- Enhance: 「UIのアニメーションを減らす」で画面上のエフェクトも減らせるように
|
||||||
- Fix: 削除して編集の削除タイミングを投稿後になるように `#14498`
|
- Fix: 削除して編集の削除タイミングを投稿後になるように `#14498`
|
||||||
- Fix: フォローされたときのメッセージがちらつくことがある問題を修正
|
- Fix: フォローされたときのメッセージがちらつくことがある問題を修正
|
||||||
|
@ -87,7 +87,6 @@ const prevUserPagination: Paging = {
|
|||||||
params: computed(() => note.value ? ({
|
params: computed(() => note.value ? ({
|
||||||
userId: note.value.userId,
|
userId: note.value.userId,
|
||||||
untilId: note.value.id,
|
untilId: note.value.id,
|
||||||
withChannelNotes: true,
|
|
||||||
}) : undefined),
|
}) : undefined),
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -98,8 +97,6 @@ const nextUserPagination: Paging = {
|
|||||||
params: computed(() => note.value ? ({
|
params: computed(() => note.value ? ({
|
||||||
userId: note.value.userId,
|
userId: note.value.userId,
|
||||||
sinceId: note.value.id,
|
sinceId: note.value.id,
|
||||||
withChannelNotes: true,
|
|
||||||
includeSensitiveChannel: $i != null,
|
|
||||||
}) : undefined),
|
}) : undefined),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ const pagination = computed(() => tab.value === 'featured' ? {
|
|||||||
userId: props.user.id,
|
userId: props.user.id,
|
||||||
withRenotes: tab.value === 'all',
|
withRenotes: tab.value === 'all',
|
||||||
withReplies: tab.value === 'all',
|
withReplies: tab.value === 'all',
|
||||||
withChannelNotes: true,
|
withChannelNotes: tab.value === 'all',
|
||||||
withFiles: tab.value === 'files',
|
withFiles: tab.value === 'files',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user