corrections de problemes

This commit is contained in:
2026-06-22 14:13:59 +02:00
parent d6e77de62c
commit 78768552fb
2 changed files with 4 additions and 5 deletions
+2 -2
View File
@@ -26,9 +26,9 @@ function creerLigne(membre) {
const corps = document.getElementById("corps_equipe");
function afficherEquipe() {
function afficherEquipe(liste) {
corps.innerHTML = "";
for (const membre of equipe) {
for (const membre of liste) {
corps.append(creerLigne(membre));
}
}