Skip to content

Commit

Permalink
108915: Fixed delete process error on ProcessDetailComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrevryghem committed Jan 5, 2024
1 parent 9e31f73 commit c91b99f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/core/data/processes/process-data.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ export class ProcessDataService extends IdentifiableDataService<Process> impleme

return process$.pipe(
distinctUntilChanged((previous: RemoteData<Process>, current: RemoteData<Process>) =>
previous.payload.processStatus === current.payload.processStatus
previous.payload?.processStatus === current.payload?.processStatus,
)
);
}
Expand Down

0 comments on commit c91b99f

Please sign in to comment.