agentgui 1.0.167 → 1.0.168
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 +1 -2
package/package.json
CHANGED
package/static/js/client.js
CHANGED
|
@@ -1288,12 +1288,11 @@ class AgentGUIClient {
|
|
|
1288
1288
|
}
|
|
1289
1289
|
|
|
1290
1290
|
const { conversation } = await response.json();
|
|
1291
|
-
this.state.currentConversation = conversation;
|
|
1292
1291
|
|
|
1293
1292
|
await this.loadConversations();
|
|
1294
1293
|
|
|
1295
1294
|
if (window.conversationManager) {
|
|
1296
|
-
window.conversationManager.loadConversations();
|
|
1295
|
+
await window.conversationManager.loadConversations();
|
|
1297
1296
|
window.conversationManager.select(conversation.id);
|
|
1298
1297
|
}
|
|
1299
1298
|
|