From 7521ae604f52dab41d859785c310bae602c658b7 Mon Sep 17 00:00:00 2001 From: chourmovs Date: Fri, 6 Sep 2024 19:48:48 +0200 Subject: [PATCH] 0609 19:48 --- webapp/public/index.html | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/webapp/public/index.html b/webapp/public/index.html index f6b5034..15400fc 100644 --- a/webapp/public/index.html +++ b/webapp/public/index.html @@ -29,18 +29,15 @@

Gestion du NAS et des analyses

// Function to display only the last two lines of output function displayOutput(data) { const outputElement = document.getElementById('console-output'); - const currentContent = outputElement.innerText.split('\n'); - - // Clean and add new data - const newLine = data.trim(); + const currentContent = outputElement.innerText.split('\n').filter(line => line.trim() !== ''); // Ajouter la nouvelle ligne reçue - currentContent.push(newLine); + currentContent.push(data.trim()); // Garder uniquement les deux dernières lignes const updatedContent = currentContent.slice(-2).join('\n'); - // Mettre à jour le contenu de
 en assurant qu'il y ait un saut de ligne à la fin
+            // Mettre à jour le contenu de 
             outputElement.innerText = updatedContent + '\n';
         }