diff --git a/CHANGELOG-VRTL.md b/CHANGELOG-VRTL.md index 788338a065cb..0f9f3f0f316a 100644 --- a/CHANGELOG-VRTL.md +++ b/CHANGELOG-VRTL.md @@ -3,6 +3,7 @@ VRTLのブランチで行われた変更点をまとめています +- fic(frontend): VRTL VSTLでリプライのトグルが表示されない問題 (anatawa12#92) - 2024/08/04 -- 2024.7.0-kinel.1 -- diff --git a/packages/frontend/src/timelines.ts b/packages/frontend/src/timelines.ts index c9b60bbe188f..665817cc0be4 100644 --- a/packages/frontend/src/timelines.ts +++ b/packages/frontend/src/timelines.ts @@ -62,7 +62,7 @@ export function availableBasicTimelines(): BasicTimelineType[] { } export function hasWithReplies(timeline: BasicTimelineType | undefined | null): boolean { - return timeline === 'local' || timeline === 'social'; + return timeline === 'local' || timeline === 'social' || timeline === 'vmimi-relay' || timeline === 'vmimi-relay-social'; } export function hasWithLocalOnly(timeline: BasicTimelineType | undefined | null): boolean {