Frontend: Fixed the notification groups always showing the first user for reactions
ci/woodpecker/push/ociImagePush Pipeline is running
Details
ci/woodpecker/push/ociImagePush Pipeline is running
Details
This commit is contained in:
parent
7f0be08799
commit
dc86b4e67d
|
@ -72,9 +72,9 @@
|
|||
:user="notif.note.user"
|
||||
/>
|
||||
<MagAvatar
|
||||
v-else-if="firstNotification.type === 'Reaction'"
|
||||
v-else-if="notif.type === 'Reaction'"
|
||||
class="icon"
|
||||
:user="firstNotification.user"
|
||||
:user="notif.user"
|
||||
/>
|
||||
<div class="sub-icon" :class="notif.type">
|
||||
<i
|
||||
|
@ -110,9 +110,9 @@
|
|||
<script lang="ts" setup>
|
||||
import {
|
||||
ComponentPublicInstance,
|
||||
Ref,
|
||||
onMounted,
|
||||
onUnmounted,
|
||||
Ref,
|
||||
ref,
|
||||
watch,
|
||||
} from "vue";
|
||||
|
|
Loading…
Reference in New Issue