Merge branch 'dev' into feature-ai

This commit is contained in:
shamoon
2025-10-09 12:54:50 -07:00
committed by GitHub
19 changed files with 237 additions and 82 deletions

View File

@@ -628,7 +628,10 @@ export class DocumentDetailComponent
})
.pipe(takeUntil(this.unsubscribeNotifier))
.subscribe(() => {
if (this.openDocumentService.isDirty(this.document)) this.saveEditNext()
if (this.openDocumentService.isDirty(this.document)) {
if (this.hasNext()) this.saveEditNext()
else this.save(true)
}
})
}