Skip to content

Commit

Permalink
Merge pull request demarches-simplifiees#9989 from tchak/fix-allow-to…
Browse files Browse the repository at this point in the history
…-edit-more-geo-areas

ETQ usager je peux éditer jusqu'à 50 points ou éléments sélectionnés dans le champ carte
  • Loading branch information
tchak authored Feb 14, 2024
2 parents bd3c2c0 + cf10b68 commit f5f94d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/components/dossiers/geo_areas_component.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
.fr-label Sélections utilisateur
.areas
%ul
- champ.selections_utilisateur.slice(0, 20).each do |geo_area|
- champ.selections_utilisateur.slice(0, 50).each do |geo_area|
= render Dossiers::GeoAreaComponent.new(geo_area:, editing:)
- if champ.selections_utilisateur.size > 20
- if champ.selections_utilisateur.size > 50
%li
%span
et #{champ.selections_utilisateur.size - 20} autres points, lignes ou polygones.
et #{champ.selections_utilisateur.size - 50} autres points, lignes ou polygones.

- if champ.cadastres.present?
.fr-label Parcelles cadastrales
Expand Down

0 comments on commit f5f94d9

Please sign in to comment.