Skip to content

Commit

Permalink
Merge pull request #1018 from bcgov/feature/ALCS-1162
Browse files Browse the repository at this point in the history
Set Proposal Summary
  • Loading branch information
dhaselhan authored Sep 27, 2023
2 parents 92b2a22 + dcd867f commit 7bd1333
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export class OverviewComponent implements OnInit, OnDestroy {
this.applicationDetailService.$application.pipe(takeUntil(this.$destroy)).subscribe(async (application) => {
if (application) {
this.application = application;
this.summary = application.summary ?? '';
this.events = await this.applicationTimelineService.fetchByFileNumber(application.fileNumber);
this.loadStatusHistory(this.application.fileNumber);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export class OverviewComponent implements OnInit, OnDestroy {
.subscribe(async (noticeOfIntent) => {
if (noticeOfIntent) {
this.noticeOfIntent = noticeOfIntent;
this.summary = noticeOfIntent.summary ?? '';
this.events = await this.noticeOfIntentTimelineService.fetchByFileNumber(noticeOfIntent.fileNumber);
this.loadStatusHistory(this.noticeOfIntent.fileNumber);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export class OverviewComponent implements OnInit, OnDestroy {
this.notificationDetailService.$notification.pipe(takeUntil(this.$destroy)).subscribe(async (notification) => {
if (notification) {
this.notification = notification;
this.summary = notification.summary ?? '';
this.events = await this.notificationTimelineService.fetchByFileNumber(notification.fileNumber);
this.loadStatusHistory(this.notification.fileNumber);
}
Expand Down

0 comments on commit 7bd1333

Please sign in to comment.