diff --git a/app/javascript/dashboard/store/modules/conversations/index.js b/app/javascript/dashboard/store/modules/conversations/index.js index daf8d3cdb..aeb7af980 100644 --- a/app/javascript/dashboard/store/modules/conversations/index.js +++ b/app/javascript/dashboard/store/modules/conversations/index.js @@ -231,11 +231,11 @@ export const mutations = { if (conversation.updated_at === selectedConversation.updated_at) { const differentAssignee = - conversation.meta.assignee?.id !== - selectedConversation.meta.assignee?.id; + conversation.meta?.assignee?.id !== + selectedConversation.meta?.assignee?.id; const differentTeams = - conversation.meta.team?.id !== selectedConversation.meta.team?.id; + conversation.meta?.team?.id !== selectedConversation.meta?.team?.id; if (differentTeams || differentAssignee) { Sentry.withScope(scope => {