diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-27 11:35:04 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-27 11:35:04 +0900 |
| commit | c5a12ca2c74081cac6255aae114853ba41389d17 (patch) | |
| tree | dbf36e1e44e0704d96993993e3d866aaba99bc5c /packages/frontend/src/components/MkNotifications.vue | |
| parent | Use cache on build (#9639) (diff) | |
| download | misskey-c5a12ca2c74081cac6255aae114853ba41389d17.tar.gz misskey-c5a12ca2c74081cac6255aae114853ba41389d17.tar.bz2 misskey-c5a12ca2c74081cac6255aae114853ba41389d17.zip | |
fix(client): フォロー申請・フォローのボタンが、通知から消えている問題を修正
Fix #9717
Diffstat (limited to 'packages/frontend/src/components/MkNotifications.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNotifications.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNotifications.vue b/packages/frontend/src/components/MkNotifications.vue index f5ae7bcee4..ab5dff8db5 100644 --- a/packages/frontend/src/components/MkNotifications.vue +++ b/packages/frontend/src/components/MkNotifications.vue @@ -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> |