fix(client): フォロー申請・フォローのボタンが、通知から消えている問題を修正

Fix #9717
This commit is contained in:
syuilo 2023-01-27 11:35:04 +09:00
parent 7af0e38dd3
commit c5a12ca2c7
3 changed files with 9 additions and 9 deletions

View file

@ -10,7 +10,7 @@
<template #default="{ items: notifications }">
<MkDateSeparatedList v-slot="{ item: notification }" :class="$style.list" :items="notifications" :no-gap="true">
<XNote v-if="['reply', 'quote', 'mention'].includes(notification.type)" :key="notification.id" :note="notification.note"/>
<XNotification v-else :key="notification.id" :notification="notification" :with-time="true" :full="false" class="_panel notification"/>
<XNotification v-else :key="notification.id" :notification="notification" :with-time="true" :full="true" class="_panel notification"/>
</MkDateSeparatedList>
</template>
</MkPagination>