From 2f06680f76922d267f23411e59b82cde329252c5 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 5 Nov 2024 20:00:44 -0800 Subject: [PATCH] Fix: fix re-activation of save button when adding / removing array items (#8208) --- .../components/document-detail/document-detail.component.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts index 6cd26b368..4fa535ea3 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.ts +++ b/src-ui/src/app/components/document-detail/document-detail.component.ts @@ -710,7 +710,10 @@ export class DocumentDetailComponent next: (docValues) => { // in case data changed while saving eg removing inbox_tags this.documentForm.patchValue(docValues) - this.store.next(this.documentForm.value) + const newValues = Object.assign({}, this.documentForm.value) + newValues.tags = [...docValues.tags] + newValues.custom_fields = [...docValues.custom_fields] + this.store.next(newValues) this.openDocumentService.setDirty(this.document, false) this.openDocumentService.save() this.toastService.showInfo($localize`Document saved successfully.`)