From b5dec87a628a4f7c8de105e1a586d117f06a1897 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 3 Aug 2023 21:49:11 -0700 Subject: [PATCH] Cancel possibly slow queries on leave doc details --- .../document-detail/document-detail.component.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 cd402817a..7a385bebe 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 @@ -213,22 +213,22 @@ export class DocumentDetailComponent this.correspondentService .listAll() - .pipe(first()) + .pipe(first(), takeUntil(this.unsubscribeNotifier)) .subscribe((result) => (this.correspondents = result.results)) this.documentTypeService .listAll() - .pipe(first()) + .pipe(first(), takeUntil(this.unsubscribeNotifier)) .subscribe((result) => (this.documentTypes = result.results)) this.storagePathService .listAll() - .pipe(first()) + .pipe(first(), takeUntil(this.unsubscribeNotifier)) .subscribe((result) => (this.storagePaths = result.results)) this.userService .listAll() - .pipe(first()) + .pipe(first(), takeUntil(this.unsubscribeNotifier)) .subscribe((result) => (this.users = result.results)) this.route.paramMap @@ -406,7 +406,7 @@ export class DocumentDetailComponent ) { this.documentsService .getSuggestions(doc.id) - .pipe(first()) + .pipe(first(), takeUntil(this.unsubscribeNotifier)) .subscribe({ next: (result) => { this.suggestions = result