diff --git a/src/views/NotificationList.vue b/src/views/NotificationList.vue index 29b96a6..fc37e66 100644 --- a/src/views/NotificationList.vue +++ b/src/views/NotificationList.vue @@ -7,55 +7,28 @@ :key="notification.id" >
- - - - - - - + + + + + + + + {{ getSenderName(notification) }} + + followed you + replied to your post + liked your post + mentioned you + reposted your post + paid for subscription + subscription expired
@@ -122,6 +95,10 @@ function getSenderName(notification: Notification): string { return sender.display_name || sender.username } +function getSenderInfo(notification: Notification): string { + return `${getSenderName(notification)} (${getActorAddress(notification.account)})` +} + function onPostDeleted(notificationIndex: number) { notifications.value.splice(notificationIndex, 1) }