From 9a7002d81795cebef0f306470476b27ce568f37d Mon Sep 17 00:00:00 2001 From: "sp.wack" <83104063+amanape@users.noreply.github.com> Date: Wed, 5 Nov 2025 18:16:46 +0400 Subject: [PATCH] fix(frontend): V1 resume conversation / agent (#11627) --- frontend/src/components/features/controls/agent-status.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/features/controls/agent-status.tsx b/frontend/src/components/features/controls/agent-status.tsx index 97df48befd..5bfd18f486 100644 --- a/frontend/src/components/features/controls/agent-status.tsx +++ b/frontend/src/components/features/controls/agent-status.tsx @@ -56,7 +56,8 @@ export function AgentStatus({ const shouldShownAgentStop = curAgentState === AgentState.RUNNING; - const shouldShownAgentResume = curAgentState === AgentState.STOPPED; + const shouldShownAgentResume = + curAgentState === AgentState.STOPPED || curAgentState === AgentState.PAUSED; // Update global state when agent loading condition changes useEffect(() => {