From 634adba8fcda5abb9c5e61f2728b5b7bfbf357b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20S=C3=A1nchez?= Date: Thu, 9 Jul 2026 07:51:31 -0600 Subject: [PATCH] fix[frontend](data_sources): removed loading indicator after output arrives from command execution --- .../src/features/datasources/components/AgentConsole.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/features/datasources/components/AgentConsole.tsx b/frontend/src/features/datasources/components/AgentConsole.tsx index 21434e0a6..e72f94347 100644 --- a/frontend/src/features/datasources/components/AgentConsole.tsx +++ b/frontend/src/features/datasources/components/AgentConsole.tsx @@ -113,7 +113,10 @@ export function AgentConsole({ agentId, { command, shell }, { - onOutput: (d) => append('out', d), + onOutput: (d) =>{ + append('out', d); + setRunning(false); + }, onError: (m) => append('err', m), onDone: () => { setRunning(false)