From f359281afea08ff116a874d544153e36f123b11e Mon Sep 17 00:00:00 2001 From: dakerboul Date: Mon, 10 Mar 2025 16:15:29 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20d'un=20lien=20cliquable=20autour=20des?= =?UTF-8?q?=20images=20dans=20la=20table=20des=20m=C3=A9triques=20de=20pro?= =?UTF-8?q?jet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/projet_detail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/projet_detail.js b/js/projet_detail.js index 4a8d777..f1e9dae 100644 --- a/js/projet_detail.js +++ b/js/projet_detail.js @@ -229,7 +229,7 @@ function populateImageTable(DataMetrics) { let i = 0; DataMetrics.forEach((measure) => { let imageTD = document.createElement("td"); - imageTD.innerHTML = ``; + imageTD.innerHTML = ``; row.appendChild(imageTD); if ((i + 1) % 3 === 0 && i !== 0) {