Skip to content

Commit

Permalink
Remove isExpanded from NARU existing and proposed residence JSONB col…
Browse files Browse the repository at this point in the history
…umns
  • Loading branch information
Abradat committed Oct 10, 2024
1 parent cd3122d commit bb49a1f
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 bb49a1f

Please sign in to comment.