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 +1 -1
- package/static/js/features.js +2 -1
package/package.json
CHANGED
package/static/js/features.js
CHANGED
|
@@ -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
|
|