diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2025-07-31 21:45:34 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-31 21:45:34 +0900 |
| commit | 4f5d3f6f7d724eafa6cf82a3ce24f8fbb7fe7f84 (patch) | |
| tree | 303d94381eb282d466d9fe3633caf44879597719 /packages/frontend/src/components/MkStreamingNotificationsTimeline.vue | |
| parent | update minimum nodejs version (diff) | |
| download | misskey-4f5d3f6f7d724eafa6cf82a3ce24f8fbb7fe7f84.tar.gz misskey-4f5d3f6f7d724eafa6cf82a3ce24f8fbb7fe7f84.tar.bz2 misskey-4f5d3f6f7d724eafa6cf82a3ce24f8fbb7fe7f84.zip | |
fix(frontend): MkNotesTimelineの日付dividerのスタイル修正 (#16306)
Diffstat (limited to 'packages/frontend/src/components/MkStreamingNotificationsTimeline.vue')
| -rw-r--r-- | packages/frontend/src/components/MkStreamingNotificationsTimeline.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/components/MkStreamingNotificationsTimeline.vue b/packages/frontend/src/components/MkStreamingNotificationsTimeline.vue index 4617e659c8..ac1f06619a 100644 --- a/packages/frontend/src/components/MkStreamingNotificationsTimeline.vue +++ b/packages/frontend/src/components/MkStreamingNotificationsTimeline.vue @@ -25,11 +25,11 @@ SPDX-License-Identifier: AGPL-3.0-only > <div v-for="(notification, i) in paginator.items.value" :key="notification.id" :data-scroll-anchor="notification.id" :class="$style.item"> <div v-if="i > 0 && isSeparatorNeeded(paginator.items.value[i -1].createdAt, notification.createdAt)" :class="$style.date"> - <span><i class="ti ti-chevron-up"></i> {{ getSeparatorInfo(paginator.items.value[i -1].createdAt, notification.createdAt).prevText }}</span> + <span><i class="ti ti-chevron-up"></i> {{ getSeparatorInfo(paginator.items.value[i -1].createdAt, notification.createdAt)?.prevText }}</span> <span style="height: 1em; width: 1px; background: var(--MI_THEME-divider);"></span> - <span>{{ getSeparatorInfo(paginator.items.value[i -1].createdAt, notification.createdAt).nextText }} <i class="ti ti-chevron-down"></i></span> + <span>{{ getSeparatorInfo(paginator.items.value[i -1].createdAt, notification.createdAt)?.nextText }} <i class="ti ti-chevron-down"></i></span> </div> - <MkNote v-if="['reply', 'quote', 'mention'].includes(notification.type)" :class="$style.content" :note="notification.note" :withHardMute="true"/> + <MkNote v-if="['reply', 'quote', 'mention'].includes(notification.type) && 'note' in notification" :class="$style.content" :note="notification.note" :withHardMute="true"/> <XNotification v-else :class="$style.content" :notification="notification" :withTime="true" :full="true"/> </div> </component> |