agentgui 1.0.328 → 1.0.329

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.328",
3
+ "version": "1.0.329",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
@@ -392,9 +392,10 @@
392
392
  window.addEventListener('conversation-selected', function(e) {
393
393
  currentConversation = e.detail.conversationId;
394
394
  updateViewToggleVisibility();
395
- // If currently in files view, reload the iframe
396
395
  if (currentView === 'files') {
397
396
  switchView('files');
397
+ } else if (currentView === 'voice') {
398
+ switchView('chat');
398
399
  }
399
400
  });
400
401