diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-16 14:18:11 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-16 14:18:11 +0900 |
| commit | 77e491f52c8ad1e2e8b2f956595d5fa98f38ad61 (patch) | |
| tree | 4b30886f8284347791e090b28dd633135aba4ea4 /packages/frontend/src/components/MkNotification.vue | |
| parent | Update vite.config.ts (diff) | |
| download | misskey-77e491f52c8ad1e2e8b2f956595d5fa98f38ad61.tar.gz misskey-77e491f52c8ad1e2e8b2f956595d5fa98f38ad61.tar.bz2 misskey-77e491f52c8ad1e2e8b2f956595d5fa98f38ad61.zip | |
refactor
Diffstat (limited to 'packages/frontend/src/components/MkNotification.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNotification.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkNotification.vue b/packages/frontend/src/components/MkNotification.vue index 0b5ada135b..4f82579917 100644 --- a/packages/frontend/src/components/MkNotification.vue +++ b/packages/frontend/src/components/MkNotification.vue @@ -1,8 +1,8 @@ <template> <div ref="elRef" :class="$style.root"> <div v-once :class="$style.head"> - <MkAvatar v-if="notification.type === 'pollEnded'" :class="$style.icon" :user="notification.note.user"/> - <MkAvatar v-else-if="notification.user" :class="$style.icon" :user="notification.user"/> + <MkAvatar v-if="notification.type === 'pollEnded'" :class="$style.icon" :user="notification.note.user" link preview/> + <MkAvatar v-else-if="notification.user" :class="$style.icon" :user="notification.user" link preview/> <img v-else-if="notification.icon" :class="$style.icon" :src="notification.icon" alt=""/> <div :class="[$style.subIcon, $style['t_' + notification.type]]"> <i v-if="notification.type === 'follow'" class="ti ti-plus"></i> |