Skip to content

Commit

Permalink
fix: disabled afficher lieux (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
abelkhay committed Jan 9, 2024
1 parent e424f2b commit 3da093c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ <h2 class="h5 text-center text-secondary fw-bold my-3 mt-auto">
<app-display-on-map-link
class="d-block mb-4"
[cartographieFeature]="features.get('cartographie')"
[lieuxMediationNumeriqueCount]="1"
[lieuxMediationNumeriqueCount]="(lieuxMediationNumeriqueCount$ | async) ?? 0"
[queryParams]="route.queryParams">
Afficher les lieux
</app-display-on-map-link>
Expand All @@ -88,7 +88,7 @@ <h2 class="h5 text-center text-secondary fw-bold my-3 mt-auto">
<div *ngIf="router.url !== '/orientation'">
<app-display-on-map-link
[cartographieFeature]="features.get('cartographie')"
[lieuxMediationNumeriqueCount]="1"
[lieuxMediationNumeriqueCount]="(lieuxMediationNumeriqueCount$ | async) ?? 0"
[queryParams]="route.queryParams">
Afficher la carte
</app-display-on-map-link>
Expand Down

0 comments on commit 3da093c

Please sign in to comment.