agentgui 1.0.600 → 1.0.601

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.600",
3
+ "version": "1.0.601",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
@@ -1355,7 +1355,8 @@ class AgentGUIClient {
1355
1355
  this.state.currentConversation = null;
1356
1356
  await window.conversationManager.loadConversations();
1357
1357
  }
1358
- this.clearOutput();
1358
+ const outputEl = document.getElementById('output');
1359
+ if (outputEl) outputEl.innerHTML = '';
1359
1360
  }
1360
1361
 
1361
1362
  isHtmlContent(text) {