Skip to content
Snippets Groups Projects
Commit 3b70fc27 authored by Pierre Ecarlat's avatar Pierre Ecarlat
Browse files

handle street with no number

parent f4306d3b
No related branches found
No related tags found
1 merge request!974feat(data): Add address and concernedPeoples to csv exported data
Pipeline #120970 passed
......@@ -183,7 +183,7 @@ export class DataComponent implements OnInit {
return {
Nom: structure.structureName,
Commune: structure.address.commune,
Adresse: `${structure.address.numero} ${structure.address.street}`,
Adresse: `${structure.address.numero ?? ''} ${structure.address.street}`.trim(),
'Aides aux démarches en ligne (gratuits)': structure.categoriesDisplay?.onlineProcedures
.map((acc) => acc.name)
.join(', '),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment