Skip to content

Commit

Permalink
Merge pull request #1910 from bcgov/hotfix/ALCS-2299
Browse files Browse the repository at this point in the history
Remove isExpanded from NARU existing and proposed residence JSONB columns
  • Loading branch information
Abradat authored Oct 10, 2024
2 parents cd3122d + bb49a1f commit 72d0e8d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,8 @@ export class NaruProposalComponent extends FilesStepComponent implements OnInit,
naruToPlaceArea: this.fillTableData.area ?? null,
naruInfrastructure: infrastructure,
naruLocationRationale: locationRationale,
naruExistingResidences: this.existingResidences.map(({ id, ...rest }) => rest),
naruProposedResidences: this.proposedResidences.map(({ id, ...rest }) => rest),
naruExistingResidences: this.existingResidences.map(({ id, isExpanded, ...rest }) => rest),
naruProposedResidences: this.proposedResidences.map(({ id, isExpanded, ...rest }) => rest),
};
const updatedApp = await this.applicationSubmissionService.updatePending(this.submissionUuid, updateDto);
this.$applicationSubmission.next(updatedApp);
Expand Down

0 comments on commit 72d0e8d

Please sign in to comment.