Skip to content

Commit

Permalink
chore(feature): 616 - Cypress test fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-mwesener committed Apr 2, 2024
1 parent 2f9dfc1 commit 1df54b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ export class NotificationHelperService {
}

modalCallback(status: NotificationStatus, id: string, reason?: string): Observable<void> {
console.log(status, "status");
console.log(id, "id");
console.log(reason, "reason");
switch (status) {
case NotificationStatus.ACKNOWLEDGED:
return this.notificationsFacade.acknowledgeNotification(id);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ export class NotificationDetailComponent implements AfterViewInit, OnDestroy {
}

private selectedNotificationBasedOnUrl(): void {
const notificationId = this.route.snapshot.paramMap.get('alertId');
const notificationId = this.route.snapshot.paramMap.get('notificationId');
this.notificationsFacade
.getNotification(notificationId)
.pipe(
Expand Down

0 comments on commit 1df54b4

Please sign in to comment.