Skip to content

Commit

Permalink
initial commit (#2583)
Browse files Browse the repository at this point in the history
Co-authored-by: Alan Leung <alan.leung57@gmail.com>
  • Loading branch information
bergomi02 and neophyte57 authored Sep 16, 2024
1 parent 49a63c9 commit e0cfef5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<!-- Work around for ngProjectAs not passing class reference to alert when applied to ng-content -->
<ng-container #alertTitle
class="alert-title">
This site requires renewal.
This site requires update.
</ng-container>
<ng-container #alertContent
class="alert-content">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ export class SiteManagementPageComponent implements OnInit {
public getWithinRenewalPeriodSiteNotificationProperties(healthAuthoritySite: HealthAuthoritySite) {
return {
icon: 'notification_important',
text: 'This site requires renewal.',
label: 'Renew Site',
text: 'This site requires update.',
label: 'Update Site',
route: () => this.viewSite(this.healthAuthorityId, healthAuthoritySite)
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<!-- Work around for ngProjectAs not passing class reference to alert when applied to ng-content -->
<ng-container #alertTitle
class="alert-title">
This site requires renewal.
This site requires update.
</ng-container>
<ng-container #alertContent
class="alert-content">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Work around for ngProjectAs not passing class reference to alert when applied to ng-content -->
<ng-container #alertTitle
class="alert-title">
One or more sites requires renewal.
One or more sites requires updating.
</ng-container>
<ng-container #alertContent
class="alert-content">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ export class SiteManagementPageComponent implements OnInit {
public getRenewalRequiredSiteNotificationProperties(organizationId: number, site: SiteListViewModel) {
return {
icon: 'notification_important',
text: 'This site requires renewal including this year\'s business licence.',
label: 'Renew Site',
text: 'Please update your business licence.',
label: 'Update Site',
route: () => this.viewSite(organizationId, site)
};
}
Expand Down

0 comments on commit e0cfef5

Please sign in to comment.