diff --git a/app/javascript/dashboard/components-next/NewConversation/components/ActionButtons.vue b/app/javascript/dashboard/components-next/NewConversation/components/ActionButtons.vue index 90cb67c4f..2a8687eb8 100644 --- a/app/javascript/dashboard/components-next/NewConversation/components/ActionButtons.vue +++ b/app/javascript/dashboard/components-next/NewConversation/components/ActionButtons.vue @@ -130,6 +130,7 @@ const keyboardEvents = { emit('sendMessage'); } }, + allowOnFocusedInput: true, }, '$mod+Enter': { action: () => { @@ -141,6 +142,7 @@ const keyboardEvents = { emit('sendMessage'); } }, + allowOnFocusedInput: true, }, }; useKeyboardEvents(keyboardEvents);