diff --git a/app/javascript/dashboard/components-next/NewConversation/ComposeConversation.vue b/app/javascript/dashboard/components-next/NewConversation/ComposeConversation.vue index f5b2cb228..9a49fc39a 100644 --- a/app/javascript/dashboard/components-next/NewConversation/ComposeConversation.vue +++ b/app/javascript/dashboard/components-next/NewConversation/ComposeConversation.vue @@ -171,6 +171,10 @@ watch( { immediate: true, deep: true } ); +const handleClickOutside = () => { + showComposeNewConversation.value = false; +}; + onMounted(() => resetContacts()); const keyboardEvents = { @@ -188,7 +192,12 @@ useKeyboardEvents(keyboardEvents);