diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2025-07-03 11:20:26 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-03 11:20:26 +0900 |
| commit | 09a5e4b10aad85d27875f3cdc8f32bd820615978 (patch) | |
| tree | b79819b40e0630314522461ea01ef365562fb255 /packages/frontend/src/components/MkStreamingNotificationsTimeline.vue | |
| parent | 🎨 (diff) | |
| download | misskey-09a5e4b10aad85d27875f3cdc8f32bd820615978.tar.gz misskey-09a5e4b10aad85d27875f3cdc8f32bd820615978.tar.bz2 misskey-09a5e4b10aad85d27875f3cdc8f32bd820615978.zip | |
fix(frontend): Paginatorの型エラー解消 (#16230)
* fix(frontend): fix paginator type error
* fix
* refactor
* fix
* fix
* fix(paginator): remove readonly type
* fix
* typo
* fix: R -> E
* remove any
---------
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
Diffstat (limited to 'packages/frontend/src/components/MkStreamingNotificationsTimeline.vue')
| -rw-r--r-- | packages/frontend/src/components/MkStreamingNotificationsTimeline.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkStreamingNotificationsTimeline.vue b/packages/frontend/src/components/MkStreamingNotificationsTimeline.vue index 04b230277c..869d848d90 100644 --- a/packages/frontend/src/components/MkStreamingNotificationsTimeline.vue +++ b/packages/frontend/src/components/MkStreamingNotificationsTimeline.vue @@ -109,7 +109,7 @@ function reload() { return paginator.reload(); } -let connection: Misskey.ChannelConnection<Misskey.Channels['main']> | null = null; +let connection: Misskey.IChannelConnection<Misskey.Channels['main']> | null = null; onMounted(() => { paginator.init(); |