🐛 Fixed document deadlock issue

This commit is contained in:
2025-08-19 00:24:51 +08:00
parent 7b70a39b23
commit 6adeadeed4
2 changed files with 15 additions and 14 deletions

View File

@@ -160,12 +160,10 @@ export const useDocumentStore = defineStore('document', () => {
try {
// 检查是否是默认文档使用ID判断
if (docId === SCRATCH_DOCUMENT_ID) {
console.log('Cannot delete default document (ID=1)');
return false;
}
await DocumentService.DeleteDocument(docId);
console.log('Backend delete successful for doc:', docId);
// 更新本地状态
delete documents.value[docId];