Clone tags array to prevent false dirty check

Closes #215
This commit is contained in:
Michael Shamoon 2022-03-05 19:42:49 -08:00
parent 1d67c32351
commit 33ab69e010

View File

@ -146,7 +146,7 @@ export class DocumentDetailComponent implements OnInit, OnDestroy, DirtyComponen
correspondent: doc.correspondent, correspondent: doc.correspondent,
document_type: doc.document_type, document_type: doc.document_type,
archive_serial_number: doc.archive_serial_number, archive_serial_number: doc.archive_serial_number,
tags: doc.tags tags: [...doc.tags]
}) })
this.isDirty$ = dirtyCheck(this.documentForm, this.store.asObservable()) this.isDirty$ = dirtyCheck(this.documentForm, this.store.asObservable())