agentgui 1.0.530 → 1.0.531
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 +4 -0
package/package.json
CHANGED
package/static/js/client.js
CHANGED
|
@@ -2372,6 +2372,10 @@ class AgentGUIClient {
|
|
|
2372
2372
|
this.ui.messageInput.disabled = false;
|
|
2373
2373
|
}
|
|
2374
2374
|
|
|
2375
|
+
if (this.ui.stopButton) this.ui.stopButton.classList.remove('visible');
|
|
2376
|
+
if (this.ui.injectButton) this.ui.injectButton.classList.remove('visible');
|
|
2377
|
+
if (this.ui.sendButton) this.ui.sendButton.style.display = '';
|
|
2378
|
+
|
|
2375
2379
|
var prevId = this.state.currentConversation?.id;
|
|
2376
2380
|
if (prevId && prevId !== conversationId) {
|
|
2377
2381
|
if (this.wsManager.isConnected && !this.state.streamingConversations.has(prevId)) {
|