Skip to content

Commit

Permalink
CSCEXAM-1291 Remove error dialog when canceling a modal window
Browse files Browse the repository at this point in the history
  • Loading branch information
lupari committed Aug 14, 2024
1 parent 9e02d6a commit 9025b39
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion ui/src/app/enrolment/enrolment.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,6 @@ export class EnrolmentService {
error: (err) => this.toast.error(err),
});
},
error: (err) => this.toast.error(err),
});
};

Expand Down
1 change: 0 additions & 1 deletion ui/src/app/facility/facility.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ export class FacilityComponent implements OnInit {
error: (err) => this.toast.error(err),
});
},
error: (err) => this.toast.error(err),
});
};

Expand Down
4 changes: 2 additions & 2 deletions ui/src/app/navigation/navigation.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</div>
<div class="nav-body">
<ul class="links">
@for (link of links; track link.name) {
@for (link of links; track link.route) {
<li [hidden]="!link.visible">
<button
class="btn important-clear-focus"
Expand Down Expand Up @@ -83,7 +83,7 @@
</div>
<div class="nav-body-mobile pt-2 pb-2" [ngbCollapse]="!mobileMenuOpen">
<ul class="links">
@for (link of links; track link.name) {
@for (link of links; track link.route) {
<li [hidden]="!link.visible">
<button
class="btn important-clear-focus w-100"
Expand Down

0 comments on commit 9025b39

Please sign in to comment.