summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2024-08-16 22:01:01 +0900
committerGitHub <noreply@github.com>2024-08-16 22:01:01 +0900
commit571566d47627b9612a1b341e641d3ffe11b462f8 (patch)
treed51ca98dd5763caefccaa22342bf223decab13c8
parentfeat: localizable dialog title for enter section title (#14401) (diff)
downloadmisskey-571566d47627b9612a1b341e641d3ffe11b462f8.tar.gz
misskey-571566d47627b9612a1b341e641d3ffe11b462f8.tar.bz2
misskey-571566d47627b9612a1b341e641d3ffe11b462f8.zip
Update timeline.vue (fix wrong type)
-rw-r--r--packages/frontend/src/pages/timeline.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/timeline.vue b/packages/frontend/src/pages/timeline.vue
index 258d1443d9..c4bff3a0b8 100644
--- a/packages/frontend/src/pages/timeline.vue
+++ b/packages/frontend/src/pages/timeline.vue
@@ -60,7 +60,7 @@ provide('shouldOmitHeaderTitle', true);
const tlComponent = shallowRef<InstanceType<typeof MkTimeline>>();
const rootEl = shallowRef<HTMLElement>();
-type TimelinePageSrc = BasicTimelineType & `list:${string}`;
+type TimelinePageSrc = BasicTimelineType | `list:${string}`;
const queue = ref(0);
const srcWhenNotSignin = ref<'local' | 'global'>(isAvailableBasicTimeline('local') ? 'local' : 'global');