diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2024-08-16 22:01:01 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-16 22:01:01 +0900 |
| commit | 571566d47627b9612a1b341e641d3ffe11b462f8 (patch) | |
| tree | d51ca98dd5763caefccaa22342bf223decab13c8 | |
| parent | feat: localizable dialog title for enter section title (#14401) (diff) | |
| download | misskey-571566d47627b9612a1b341e641d3ffe11b462f8.tar.gz misskey-571566d47627b9612a1b341e641d3ffe11b462f8.tar.bz2 misskey-571566d47627b9612a1b341e641d3ffe11b462f8.zip | |
Update timeline.vue (fix wrong type)
| -rw-r--r-- | packages/frontend/src/pages/timeline.vue | 2 |
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'); |