From e1542bdee6de0a95aa6b592ca830b2d3004d5d8b Mon Sep 17 00:00:00 2001 From: "Dr. Zed" <142888684+DocterZed@users.noreply.github.com> Date: Wed, 11 Mar 2026 11:31:40 +1300 Subject: [PATCH] fix: submit project actions with Enter input (#625) --- packages/ui/src/components/layout/ProjectActionsButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/components/layout/ProjectActionsButton.tsx b/packages/ui/src/components/layout/ProjectActionsButton.tsx index 2b55fc75..36cbc559 100644 --- a/packages/ui/src/components/layout/ProjectActionsButton.tsx +++ b/packages/ui/src/components/layout/ProjectActionsButton.tsx @@ -499,7 +499,7 @@ export const ProjectActionsButton = ({ }; const normalizedCommand = stripControlChars(action.command.trim().replace(/\r\n|\r/g, '\n')); - await terminal.sendInput(activeSessionId, `${normalizedCommand}\n\u0004`); + await terminal.sendInput(activeSessionId, `${normalizedCommand}\r`); } catch (error) { setRunningByKey((prev) => { const next = { ...prev };