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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.530",
3
+ "version": "1.0.531",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
@@ -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)) {