Skip to content

Commit

Permalink
Fix variable name (#18090)
Browse files Browse the repository at this point in the history
Fix variable name in javascript code
  • Loading branch information
metfan authored Jan 29, 2024
1 parent f5701bf commit fa10747
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ function afficherCyclesAnterieurs() {

// On parcourt la liste des tous les cycles et on
// les affiche.
cycles.forEach((period) => {
cycles.forEach((cycle) => {
const elementCycle = document.createElement("li");
elementCycle.textContent = `Du ${formaterDate(
cycle.dateDebut,
Expand Down

0 comments on commit fa10747

Please sign in to comment.