From ac72f8a27112ce668552f0c939fdb2b80355ae8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?= <71827178+bosiraphael@users.noreply.github.com> Date: Tue, 19 Nov 2024 16:01:28 +0100 Subject: [PATCH] Fix workflow actions not being selectable with arrow keys (#8576) https://github.com/user-attachments/assets/c108b60b-030e-4eef-a30f-fab472ea60a9 --- .../src/modules/command-menu/components/CommandMenu.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/twenty-front/src/modules/command-menu/components/CommandMenu.tsx b/packages/twenty-front/src/modules/command-menu/components/CommandMenu.tsx index 0e3d2bdce7..749ea0e693 100644 --- a/packages/twenty-front/src/modules/command-menu/components/CommandMenu.tsx +++ b/packages/twenty-front/src/modules/command-menu/components/CommandMenu.tsx @@ -420,6 +420,7 @@ export const CommandMenu = () => { const selectableItemIds = copilotCommands .map((cmd) => cmd.id) .concat(matchingStandardActionCommands.map((cmd) => cmd.id)) + .concat(matchingWorkflowRunCommands.map((cmd) => cmd.id)) .concat(matchingCreateCommand.map((cmd) => cmd.id)) .concat(matchingNavigateCommand.map((cmd) => cmd.id)) .concat(people?.map((person) => person.id))