Update deprecated edit-dialog rxjs

This commit is contained in:
Michael Shamoon 2022-11-09 02:40:45 -08:00
parent 78f9a80895
commit 997bff4917

View File

@ -92,16 +92,16 @@ export abstract class EditDialogComponent<T extends ObjectWithId>
break
}
this.networkActive = true
serverResponse.subscribe(
(result) => {
serverResponse.subscribe({
next: (result) => {
this.activeModal.close()
this.success.emit(result)
},
(error) => {
error: (error) => {
this.error = error.error
this.networkActive = false
}
)
},
})
}
cancel() {