From d2a47f9bab62dc0eff75cfe42e06d55203bfb532 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?= <71827178+bosiraphael@users.noreply.github.com> Date: Wed, 22 Oct 2025 17:17:14 +0200 Subject: [PATCH] Fix Cmd + K conflict in note when adding a link (cmd+k shortcut) and opening right drawer (#15257) Closes https://github.com/twentyhq/twenty/issues/14949 https://github.com/user-attachments/assets/c63e95a8-33ad-4307-ad35-4e4464336004 --- .../src/modules/activities/components/ActivityRichTextEditor.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/twenty-front/src/modules/activities/components/ActivityRichTextEditor.tsx b/packages/twenty-front/src/modules/activities/components/ActivityRichTextEditor.tsx index 615e252b2b..7fc39b540e 100644 --- a/packages/twenty-front/src/modules/activities/components/ActivityRichTextEditor.tsx +++ b/packages/twenty-front/src/modules/activities/components/ActivityRichTextEditor.tsx @@ -411,6 +411,7 @@ export const ActivityRichTextEditor = ({ focusId: activityId, globalHotkeysConfig: { enableGlobalHotkeysConflictingWithKeyboard: false, + enableGlobalHotkeysWithModifiers: false, }, }); },