mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 13:03:09 +02:00
fix(frontend): ユーザーページの ノート > ファイル付き タブにリプライが表示されてしまう (#12148)
This commit is contained in:
parent
1d9b5ae1ba
commit
5e76675a0c
2 changed files with 2 additions and 1 deletions
|
@ -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のキャッシュをオフにできるように
|
||||
|
|
|
@ -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',
|
||||
})),
|
||||
|
|
Loading…
Reference in a new issue