summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/timeline.vue
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-08-05 09:44:59 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-08-05 09:44:59 +0900
commit9931fff35ba13f1ed5d7d949d29e0da5e29a050f (patch)
treeb8d91e493997ff5cfd70917904e3aa598e5e7725 /packages/frontend/src/pages/timeline.vue
parentfix type errors (diff)
downloadmisskey-9931fff35ba13f1ed5d7d949d29e0da5e29a050f.tar.gz
misskey-9931fff35ba13f1ed5d7d949d29e0da5e29a050f.tar.bz2
misskey-9931fff35ba13f1ed5d7d949d29e0da5e29a050f.zip
🎨
Diffstat (limited to 'packages/frontend/src/pages/timeline.vue')
-rw-r--r--packages/frontend/src/pages/timeline.vue4
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/frontend/src/pages/timeline.vue b/packages/frontend/src/pages/timeline.vue
index b8c3ebadd9..3fe48b4d72 100644
--- a/packages/frontend/src/pages/timeline.vue
+++ b/packages/frontend/src/pages/timeline.vue
@@ -4,7 +4,7 @@ SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
-<PageWithHeader v-model:tab="src" :actions="headerActions" :tabs="$i ? headerTabs : headerTabsWhenNotLogin" :swipable="true" :displayMyAvatar="true">
+<PageWithHeader v-model:tab="src" :actions="headerActions" :tabs="$i ? headerTabs : headerTabsWhenNotLogin" :swipable="true" :displayMyAvatar="true" :canOmitTitle="true">
<div class="_spacer" style="--MI_SPACER-w: 800px;">
<MkTip v-if="isBasicTimeline(src)" :k="`tl.${src}`" style="margin-bottom: var(--MI-margin);">
{{ i18n.ts._timelineDescription[src] }}
@@ -45,8 +45,6 @@ import { miLocalStorage } from '@/local-storage.js';
import { availableBasicTimelines, hasWithReplies, isAvailableBasicTimeline, isBasicTimeline, basicTimelineIconClass } from '@/timelines.js';
import { prefer } from '@/preferences.js';
-provide('shouldOmitHeaderTitle', true);
-
const tlComponent = useTemplateRef('tlComponent');
type TimelinePageSrc = BasicTimelineType | `list:${string}`;