fix(ui): transparent problem

This commit is contained in:
무라쿠모 2024-07-25 20:36:49 +09:00
parent 531aa6101a
commit 468be3f0fe
No known key found for this signature in database
GPG key ID: 139D6573F92DA9F7
3 changed files with 8 additions and 8 deletions

View file

@ -16,7 +16,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #default="{ items: notifications }">
<MkDateSeparatedList v-slot="{ item: notification }" :class="$style.list" :items="notifications" :noGap="true">
<MkNote v-if="['reply', 'quote', 'mention'].includes(notification.type)" :key="notification.id + ':note'" :note="notification.note"/>
<XNotification v-else :key="notification.id" :notification="notification" :withTime="true" :full="true" class="_panel"/>
<XNotification v-else :key="notification.id" :notification="notification" :withTime="true" :full="true"/>
</MkDateSeparatedList>
</template>
</MkPagination>