From c9baa76afdcca09de60140ac562ee5d29cf379e5 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 17 Feb 2022 23:05:14 -0800 Subject: [PATCH] clear 'dirty' documents when closing all --- src-ui/src/app/services/open-documents.service.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src-ui/src/app/services/open-documents.service.ts b/src-ui/src/app/services/open-documents.service.ts index c44f4cd75..92802c765 100644 --- a/src-ui/src/app/services/open-documents.service.ts +++ b/src-ui/src/app/services/open-documents.service.ts @@ -102,6 +102,7 @@ export class OpenDocumentsService { modal.componentInstance.buttonsEnabled = false modal.close() this.openDocuments.splice(0, this.openDocuments.length) + this.dirtyDocuments.clear() this.save() }) const subject = new Subject() @@ -109,6 +110,7 @@ export class OpenDocumentsService { return subject.asObservable() } else { this.openDocuments.splice(0, this.openDocuments.length) + this.dirtyDocuments.clear() this.save() return of(true) }