From a29d3ea50722e822f2e8a2d3f9ae3af38973532f Mon Sep 17 00:00:00 2001 From: centdix <40307056+centdix@users.noreply.github.com> Date: Tue, 21 Oct 2025 17:41:56 +0200 Subject: [PATCH] feat(flow chat): add cancel button (#6869) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(flow chat): add cancel button Add cancel button to flow chat interface that appears when a flow is executing. - Replace send button with red stop button when processing - Wire up cancel functionality to stop flow execution - Support both polling and streaming modes - Fixes #6868 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: windmill-internal-app[bot] * fix --------- Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> Co-authored-by: windmill-internal-app[bot] --- .../conversations/FlowChatInterface.svelte | 34 +++++++++++++------ .../conversations/FlowChatManager.svelte.ts | 32 ++++++++++++++++- 2 files changed, 54 insertions(+), 12 deletions(-) diff --git a/frontend/src/lib/components/flows/conversations/FlowChatInterface.svelte b/frontend/src/lib/components/flows/conversations/FlowChatInterface.svelte index 2b1d776368..e314141723 100644 --- a/frontend/src/lib/components/flows/conversations/FlowChatInterface.svelte +++ b/frontend/src/lib/components/flows/conversations/FlowChatInterface.svelte @@ -1,6 +1,6 @@