mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-08-18 17:07:21 +02:00
Add files via upload
This commit is contained in:
+12
-1
@@ -1260,7 +1260,8 @@ function renderProcessDetails(messageId, processDetails) {
|
||||
addTimelineItem(timeline, eventType, {
|
||||
title: itemTitle,
|
||||
message: detail.message || '',
|
||||
data: data
|
||||
data: data,
|
||||
createdAt: detail.createdAt // 传递实际的事件创建时间
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1980,6 +1981,16 @@ async function deleteConversation(conversationId, skipConfirm = false) {
|
||||
addAttackChainButton(null);
|
||||
}
|
||||
|
||||
// 更新缓存 - 立即删除,确保后续加载时能正确识别
|
||||
delete conversationGroupMappingCache[conversationId];
|
||||
// 同时从待保留映射中移除
|
||||
delete pendingGroupMappings[conversationId];
|
||||
|
||||
// 如果当前在分组详情页面,重新加载分组对话
|
||||
if (currentGroupId) {
|
||||
await loadGroupConversations(currentGroupId);
|
||||
}
|
||||
|
||||
// 刷新对话列表
|
||||
loadConversations();
|
||||
} catch (error) {
|
||||
|
||||
Reference in New Issue
Block a user