From dcd867ff3578ac6f10115409efd677c8269ac53b Mon Sep 17 00:00:00 2001 From: Daniel Haselhan Date: Wed, 27 Sep 2023 16:08:59 -0700 Subject: [PATCH] Set Proposal Summary --- .../src/app/features/application/overview/overview.component.ts | 1 + .../app/features/notice-of-intent/overview/overview.component.ts | 1 + .../src/app/features/notification/overview/overview.component.ts | 1 + 3 files changed, 3 insertions(+) diff --git a/alcs-frontend/src/app/features/application/overview/overview.component.ts b/alcs-frontend/src/app/features/application/overview/overview.component.ts index 435265d389..b9919ed795 100644 --- a/alcs-frontend/src/app/features/application/overview/overview.component.ts +++ b/alcs-frontend/src/app/features/application/overview/overview.component.ts @@ -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); } diff --git a/alcs-frontend/src/app/features/notice-of-intent/overview/overview.component.ts b/alcs-frontend/src/app/features/notice-of-intent/overview/overview.component.ts index ec012866c2..6fde98c3aa 100644 --- a/alcs-frontend/src/app/features/notice-of-intent/overview/overview.component.ts +++ b/alcs-frontend/src/app/features/notice-of-intent/overview/overview.component.ts @@ -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); } diff --git a/alcs-frontend/src/app/features/notification/overview/overview.component.ts b/alcs-frontend/src/app/features/notification/overview/overview.component.ts index 5cee244efc..d27e7e0f86 100644 --- a/alcs-frontend/src/app/features/notification/overview/overview.component.ts +++ b/alcs-frontend/src/app/features/notification/overview/overview.component.ts @@ -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); }