Merge pull request #10769 from colinux/typo-region

ETQ instructeur, corrections de typos dans les sous-filtres SIRET
This commit is contained in:
Colin Darie 2024-09-10 14:59:24 +00:00 committed by GitHub
commit 4e1e189989
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -40,7 +40,7 @@ type Address {
postalCode: String!
"""
n° de region
n° de région
"""
regionCode: String

View file

@ -24,7 +24,7 @@ module Types
field :department_code, String, "n° de département", null: true
field :region_name, String, "nom de région", null: true
field :region_code, String, "n° de region", null: true
field :region_code, String, "n° de région", null: true
field :geometry, Types::GeoJSON, "coordonnées géographique", null: true

View file

@ -10,7 +10,7 @@ module AddressableColumnConcern
table:,
displayable: false,
column: stable_id,
label: "#{libelle} code postal (5 chiffres)",
label: "#{libelle} code postal (5 chiffres)",
type: :text,
value_column: ['postal_code']
),
@ -34,7 +34,7 @@ module AddressableColumnConcern
table:,
displayable: false,
column: stable_id,
label: "#{libelle} region",
label: "#{libelle} région",
type: :enum,
value_column: ['region_name']
)