diff --git a/app/assets/javascripts/services/alertService.ts b/app/assets/javascripts/services/alertService.ts index 74a775b89..0e5ae1bec 100644 --- a/app/assets/javascripts/services/alertService.ts +++ b/app/assets/javascripts/services/alertService.ts @@ -91,8 +91,8 @@ export class AlertService implements SNAlertService { }); } - blockingDialog(text: string) { - const alert = new SKAlert({ text }); + blockingDialog(text: string, title?: string) { + const alert = new SKAlert({ text, title }); alert.present(); return () => { alert.dismiss();