agentgui 1.0.558 → 1.0.559
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/static/js/client.js +5 -1
package/package.json
CHANGED
package/static/js/client.js
CHANGED
|
@@ -2553,9 +2553,13 @@ class AgentGUIClient {
|
|
|
2553
2553
|
const hasMoreChunks = totalChunks && chunks.length < totalChunks;
|
|
2554
2554
|
|
|
2555
2555
|
const clientKnowsStreaming = this.state.streamingConversations.has(conversationId);
|
|
2556
|
-
const shouldResumeStreaming =
|
|
2556
|
+
const shouldResumeStreaming = latestSession &&
|
|
2557
2557
|
(latestSession.status === 'active' || latestSession.status === 'pending');
|
|
2558
2558
|
|
|
2559
|
+
if (this.ui.messageInput) {
|
|
2560
|
+
this.ui.messageInput.disabled = shouldResumeStreaming;
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2559
2563
|
const outputEl = document.getElementById('output');
|
|
2560
2564
|
if (outputEl) {
|
|
2561
2565
|
const wdInfo = conversation.workingDirectory ? `${this.escapeHtml(conversation.workingDirectory)}` : '';
|