diff --git a/ui/src/components/chat/ChatInput.tsx b/ui/src/components/chat/ChatInput.tsx index 5607e07..31ea32c 100644 --- a/ui/src/components/chat/ChatInput.tsx +++ b/ui/src/components/chat/ChatInput.tsx @@ -2473,6 +2473,11 @@ export const ChatInput: React.FC = ({ onOpenSettings, scrollToBo wasAborted={working.wasAborted} abortActive={working.abortActive} retryInfo={working.retryInfo} + loopInfo={loopState ? { current: loopState.current, total: loopState.total, prompt: loopState.prompt } : null} + onStopLoop={() => { + setLoopState(null); + abortCurrentOperation(); + }} showAbortStatus={showAbortStatus} /> diff --git a/web/XCOpenCodeWeb.exe b/web/XCOpenCodeWeb.exe index 5cd6fc0..4a56383 100644 Binary files a/web/XCOpenCodeWeb.exe and b/web/XCOpenCodeWeb.exe differ