117287: Removed remaining observable function calls from the HTML templates

This commit is contained in:
Alexandre Vryghem
2025-01-29 20:53:54 +01:00
parent 5ee721f2c4
commit dc8b10593c
38 changed files with 332 additions and 515 deletions

View File

@@ -50,11 +50,12 @@ export class ProcessOverviewComponent implements OnInit, OnDestroy {
*/
dateFormat = 'yyyy-MM-dd HH:mm:ss';
processesToDelete: string[] = [];
private modalRef: any;
isProcessingSub: Subscription;
isProcessing$: Observable<boolean>;
constructor(protected processService: ProcessDataService,
protected paginationService: PaginationService,
protected ePersonService: EPersonDataService,
@@ -67,6 +68,7 @@ export class ProcessOverviewComponent implements OnInit, OnDestroy {
ngOnInit(): void {
this.setProcesses();
this.processBulkDeleteService.clearAllProcesses();
this.isProcessing$ = this.processBulkDeleteService.isProcessing$();
}
/**