From 51409bd0904313c9f80615861d156703b284ad5b Mon Sep 17 00:00:00 2001 From: isUnknown Date: Thu, 19 Dec 2024 10:38:14 +0100 Subject: [PATCH] comment reply notification working --- src/components/notifications/Reply.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/notifications/Reply.vue b/src/components/notifications/Reply.vue index aea2033..4f859ff 100644 --- a/src/components/notifications/Reply.vue +++ b/src/components/notifications/Reply.vue @@ -3,7 +3,7 @@ class="notification | bg-white rounded-lg | p-16 | flow" :data-status="notification.isread == true ? 'read' : 'unread'" data-type="comment" - @click="read(notification)" + @click="router.push(notification.location.dialoguri + '&comments=true')" >

@@ -42,8 +42,10 @@