From a86c2705e989c56cab325cedecb988eb8d8e24dc Mon Sep 17 00:00:00 2001 From: fgrep Date: Thu, 19 Jan 2023 08:49:27 -0300 Subject: [PATCH] Fix: more events tracking for SaaS (#6234) (#6298) --- .../dashboard/store/modules/conversations/actions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/javascript/dashboard/store/modules/conversations/actions.js b/app/javascript/dashboard/store/modules/conversations/actions.js index bad195642..48fa4fa58 100644 --- a/app/javascript/dashboard/store/modules/conversations/actions.js +++ b/app/javascript/dashboard/store/modules/conversations/actions.js @@ -175,8 +175,8 @@ const actions = { const response = await MessageApi.create(pendingMessage); AnalyticsHelper.track( pendingMessage.private - ? CONVERSATION_EVENTS.CONVERSATION.SENT_PRIVATE_NOTE - : CONVERSATION_EVENTS.CONVERSATION.SENT_MESSAGE + ? CONVERSATION_EVENTS.SENT_PRIVATE_NOTE + : CONVERSATION_EVENTS.SENT_MESSAGE ); commit(types.ADD_MESSAGE, { ...response.data,