Skip to content
Snippets Groups Projects
Verified Commit 951894ec authored by Damien's avatar Damien
Browse files

FEAT #13486 TIME 0:25 Check handle soft errors actions

parent f238d926
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ export class closeMailWithAttachmentsOrNotesActionComponent implements OnInit {
}),
finalize(() => this.loading = false),
catchError((err: any) => {
this.notify.handleErrors(err);
this.notify.handleSoftErrors(err);
return of(false);
})
).subscribe();
......
......@@ -79,7 +79,7 @@ export class SendExternalNoteBookActionComponent implements OnInit {
}),
finalize(() => this.loading = false),
catchError((err: any) => {
this.notify.handleErrors(err);
this.notify.handleSoftErrors(err);
return of(false);
})
).subscribe();
......
......@@ -39,7 +39,7 @@ export class UpdateAcknowledgementSendDateActionComponent implements OnInit {
}),
finalize(() => this.loading = false),
catchError((err: any) => {
this.notify.handleErrors(err);
this.notify.handleSoftErrors(err);
return of(false);
})
).subscribe();
......
......@@ -75,7 +75,7 @@ export class ResetVisaActionComponent implements OnInit {
}),
finalize(() => this.loading = false),
catchError((err: any) => {
this.notify.handleErrors(err);
this.notify.handleSoftErrors(err);
return of(false);
})
).subscribe();
......
......@@ -146,7 +146,7 @@ export class SendSignatureBookActionComponent implements AfterViewInit {
}),
finalize(() => this.loading = false),
catchError((err: any) => {
this.notify.handleErrors(err);
this.notify.handleSoftErrors(err);
return of(false);
})
).subscribe();
......@@ -165,7 +165,7 @@ export class SendSignatureBookActionComponent implements AfterViewInit {
}),
finalize(() => this.loading = false),
catchError((err: any) => {
this.notify.handleErrors(err);
this.notify.handleSoftErrors(err);
return of(false);
})
).subscribe();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment