From 1731fc41945af5f4935e6168b24f57acba76f939 Mon Sep 17 00:00:00 2001 From: "Paul G." Date: Wed, 18 Sep 2024 15:55:22 +0200 Subject: [PATCH] fix: typo sur les fichiers csv affelnet (#3822) Co-authored-by: Paul Gaucher --- ui/modules/voeux/AffelnetPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/modules/voeux/AffelnetPage.tsx b/ui/modules/voeux/AffelnetPage.tsx index 4e725fbf7..a19152634 100644 --- a/ui/modules/voeux/AffelnetPage.tsx +++ b/ui/modules/voeux/AffelnetPage.tsx @@ -230,7 +230,7 @@ function VoeuxAffelnetPage() { : ""; downloadObject( await _getBlob(`/api/v1/affelnet/export/non-concretise${params}`), - `voeux_affelnet_non_concretisee.csv`, + `voeux_affelnet_non_concretise.csv`, "text/plain" ); }} @@ -301,7 +301,7 @@ function VoeuxAffelnetPage() { const params = organisme_departements ? `?organisme_departements=${organisme_departements}` : ""; downloadObject( await _getBlob(`/api/v1/affelnet/export/concretise${params}`), - `voeux_affelnet_non_concretisee.csv`, + `voeux_affelnet_concretise.csv`, "text/plain" ); }}