diff --git a/ui-ngx/src/app/modules/home/pages/notification/sent/sent-error-dialog.component.html b/ui-ngx/src/app/modules/home/pages/notification/sent/sent-error-dialog.component.html index f8df6cc13b..654c75f515 100644 --- a/ui-ngx/src/app/modules/home/pages/notification/sent/sent-error-dialog.component.html +++ b/ui-ngx/src/app/modules/home/pages/notification/sent/sent-error-dialog.component.html @@ -26,7 +26,7 @@
|
diff --git a/ui-ngx/src/app/modules/home/pages/notification/sent/sent-error-dialog.component.ts b/ui-ngx/src/app/modules/home/pages/notification/sent/sent-error-dialog.component.ts
index 4a8d125a94..7ce286717a 100644
--- a/ui-ngx/src/app/modules/home/pages/notification/sent/sent-error-dialog.component.ts
+++ b/ui-ngx/src/app/modules/home/pages/notification/sent/sent-error-dialog.component.ts
@@ -20,7 +20,11 @@ import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
import { Router } from '@angular/router';
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
-import { NotificationDeliveryMethod, NotificationRequest } from '@shared/models/notification.models';
+import {
+ NotificationDeliveryMethod,
+ NotificationDeliveryMethodTranslateMap,
+ NotificationRequest
+} from '@shared/models/notification.models';
export interface NotificationRequestErrorDialogData {
notificationRequest: NotificationRequest;
@@ -35,12 +39,7 @@ export class SentErrorDialogComponent extends DialogComponent |