From e345a4486dea849956e5266aa438c32700092180 Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Tue, 15 Feb 2022 22:49:53 +0530 Subject: [PATCH] fix: Throwing NavigationDuplicated error (#3978) --- .../components/widgets/conversation/ConversationCard.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue b/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue index dc8cae554..7e6c89bac 100644 --- a/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue +++ b/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue @@ -255,6 +255,9 @@ export default { foldersId: this.foldersId, conversationType: this.conversationType, }); + if (this.isActiveChat) { + return; + } router.push({ path: frontendURL(path) }); }, },