Add files via upload

This commit is contained in:
公明
2026-06-17 10:50:19 +08:00
committed by GitHub
parent 8d999792b8
commit 616d87f4cc
3 changed files with 12 additions and 12 deletions
+5 -2
View File
@@ -7468,8 +7468,11 @@ async function deleteSelectedConversations() {
for (const id of ids) {
await deleteConversation(id, true); // 跳过内部确认,因为批量删除时已经确认过了
}
closeBatchManageModal();
loadConversationsWithGroups();
// 删除后保持弹窗打开,便于继续管理剩余对话
const selectAll = document.getElementById('batch-select-all');
if (selectAll) {
selectAll.checked = false;
}
} catch (error) {
console.error('删除失败:', error);
const failedMsg = typeof window.t === 'function' ? window.t('batchManageModal.deleteFailed') : '删除失败';