Fix: ensure title gets marked as dirty

This commit is contained in:
shamoon
2025-08-30 09:09:43 -07:00
parent 117dfb83fe
commit a77141e133

View File

@@ -472,6 +472,7 @@ export class DocumentDetailComponent
if (titleValue !== this.titleInput.value) return
this.title = titleValue
this.documentForm.patchValue({ title: titleValue })
this.documentForm.get('title').markAsDirty()
})
this.setupDirtyTracking(useDoc, doc)
},