diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts index 0f7218f06..9a16b4426 100644 --- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts +++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts @@ -356,7 +356,7 @@ export class FilterableDropdownComponent { if (this.editing) { this.selectionModel.reset() } - this.open.next() + this.open.next(this) } else { this.filterText = '' if (this.applyOnClose && this.selectionModel.isDirty()) { 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 88f77160a..4d705131e 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 @@ -206,18 +206,18 @@ export class DocumentDetailComponent }) ) .pipe(takeUntil(this.unsubscribeNotifier)) - .subscribe( - ({ doc, dirty }) => { + .subscribe({ + next: ({ doc, dirty }) => { this.openDocumentService.setDirty(doc.id, dirty) }, - (error) => { + error: (error) => { this.router.navigate(['404']) - } - ) + }, + }) } ngOnDestroy(): void { - this.unsubscribeNotifier.next() + this.unsubscribeNotifier.next(this) this.unsubscribeNotifier.complete() } @@ -226,25 +226,25 @@ export class DocumentDetailComponent this.documentsService .getMetadata(doc.id) .pipe(first()) - .subscribe( - (result) => { + .subscribe({ + next: (result) => { this.metadata = result }, - (error) => { + error: (error) => { this.metadata = null - } - ) + }, + }) this.documentsService .getSuggestions(doc.id) .pipe(first()) - .subscribe( - (result) => { + .subscribe({ + next: (result) => { this.suggestions = result }, - (error) => { + error: (error) => { this.suggestions = null - } - ) + }, + }) this.title = this.documentTitlePipe.transform(doc.title) this.documentForm.patchValue(doc) } @@ -315,17 +315,17 @@ export class DocumentDetailComponent this.documentsService .update(this.document) .pipe(first()) - .subscribe( - (result) => { + .subscribe({ + next: (result) => { this.close() this.networkActive = false this.error = null }, - (error) => { + error: (error) => { this.networkActive = false this.error = error.error - } - ) + }, + }) } saveEditNext() { @@ -351,8 +351,8 @@ export class DocumentDetailComponent }) ) .pipe(first()) - .subscribe( - ({ updateResult, nextDocId, closeResult }) => { + .subscribe({ + next: ({ updateResult, nextDocId, closeResult }) => { this.error = null this.networkActive = false if (closeResult && updateResult && nextDocId) { @@ -360,11 +360,11 @@ export class DocumentDetailComponent this.titleInput?.focus() } }, - (error) => { + error: (error) => { this.networkActive = false this.error = error.error - } - ) + }, + }) } close() {