diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-28 13:24:25 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-28 13:24:25 +0900 |
| commit | bca3602da2764a3ee044e0e836666b65dad435ef (patch) | |
| tree | 23d7efa4c6925ade8b4152e72b9203c978150abf /packages/frontend/src/components | |
| parent | refactor (diff) | |
| download | misskey-bca3602da2764a3ee044e0e836666b65dad435ef.tar.gz misskey-bca3602da2764a3ee044e0e836666b65dad435ef.tar.bz2 misskey-bca3602da2764a3ee044e0e836666b65dad435ef.zip | |
refactor
Diffstat (limited to 'packages/frontend/src/components')
| -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 93ffee8d98..15e8e2105f 100644 --- a/packages/frontend/src/components/MkStreamingNotificationsTimeline.vue +++ b/packages/frontend/src/components/MkStreamingNotificationsTimeline.vue @@ -59,7 +59,7 @@ import { isSeparatorNeeded, getSeparatorInfo } from '@/utility/timeline-date-sep import { Paginator } from '@/utility/paginator.js'; const props = defineProps<{ - excludeTypes?: typeof notificationTypes[number][]; + excludeTypes?: typeof notificationTypes[number][] | null; }>(); const rootEl = useTemplateRef('rootEl'); |