Skip to content

Commit

Permalink
Merge pull request #63 from IGNF/api_telechargement_37
Browse files Browse the repository at this point in the history
Api téléchargement formulaire #37
  • Loading branch information
mmohadIGN authored Nov 7, 2024
2 parents bfd5848 + 87973b7 commit 5feaf4f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,24 +155,24 @@ export class IgnApiDlComponent implements OnInit {

setZone(value: string) {
if (this.bucketPromisesZone.map((choice) => choice.value).includes(value)) {
this.zone$.next(value)
this.resetPage()
this.zone$.next(value)
}
}

setCrs(value: string) {
if (this.bucketPromisesCrs.map((choice) => choice.value).includes(value)) {
this.crs$.next(value)
this.resetPage()
this.crs$.next(value)
}
}

setFormat(value: string) {
if (
this.bucketPromisesFormat.map((choice) => choice.value).includes(value)
) {
this.format$.next(value)
this.resetPage()
this.format$.next(value)
}
}

Expand Down

0 comments on commit 5feaf4f

Please sign in to comment.