Skip to content

Commit

Permalink
Merge pull request #1360 from bcgov/feature/ALCS-1591
Browse files Browse the repository at this point in the history
Bug Fixes
  • Loading branch information
dhaselhan authored Jan 30, 2024
2 parents aa20fbc + 54bd159 commit 9cd8464
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export class DecisionComponentsComponent implements OnInit, OnDestroy, AfterView
private toastService: ToastService,
private noticeOfIntentDetailService: NoticeOfIntentDetailService,
private submissionService: NoticeOfIntentSubmissionService,
private confirmationDialogService: ConfirmationDialogService
private confirmationDialogService: ConfirmationDialogService,
) {}

ngOnInit(): void {
Expand Down Expand Up @@ -100,7 +100,7 @@ export class DecisionComponentsComponent implements OnInit, OnDestroy, AfterView
agCapMap: this.noticeOfIntent.agCapMap,
agCapConsultant: this.noticeOfIntent.agCapConsultant,
noticeOfIntentDecisionComponentType: this.decisionComponentTypes.find(
(e) => e.code === typeCode && e.uiCode !== 'COPY'
(e) => e.code === typeCode && e.uiCode !== 'COPY',
)!,
};

Expand Down Expand Up @@ -189,7 +189,7 @@ export class DecisionComponentsComponent implements OnInit, OnDestroy, AfterView

private patchPfrsFields(component: NoticeOfIntentDecisionComponentDto) {
this.patchRosoFields(component);
this.patchRosoFields(component);
this.patchPofoFields(component);
component.endDate2 = this.noticeOfIntent.proposalEndDate2;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ <h5 *ngIf="parcel.ownershipTypeCode === PARCEL_OWNERSHIP_TYPES.CROWN">Government
<app-no-data [showRequired]="false" *ngIf="!owner.corporateSummary"></app-no-data>
</div>
</ng-container>
<div class="full-width">1
<div class="full-width">
<app-no-data [showRequired]="showErrors" *ngIf="parcel.owners.length === 0"></app-no-data>
</div>
</div>
Expand Down

0 comments on commit 9cd8464

Please sign in to comment.