Skip to content

Commit

Permalink
fix(atlas): remplacer les labels des secteurs par des valeurs statiques
Browse files Browse the repository at this point in the history
  • Loading branch information
jerem1508 committed Jan 14, 2025
1 parent 11ee52b commit 3f01130
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions server/src/routes/tableaux/atlas/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -685,16 +685,14 @@ router.route("/atlas/number-of-students").get((req, res) => {
data.secteurs = [];
data.secteurs.push({
id: "PU",
label: allData.data.find((item) => item.secteur === "PU")
?.secteur_de_l_etablissement,
label: "Secteur public",
value: allData.data
.filter((item) => item.secteur === "PU")
?.reduce((acc, item) => acc + item.effectif, 0),
});
data.secteurs.push({
id: "PR",
label: allData.data.find((item) => item.secteur === "PR")
?.secteur_de_l_etablissement,
label: "Secteur privé",
value: allData.data
.filter((item) => item.secteur === "PR")
?.reduce((acc, item) => acc + item.effectif, 0),
Expand Down

0 comments on commit 3f01130

Please sign in to comment.