From 2c83bd0cdd83401042f53f0159d426cef0240c3e Mon Sep 17 00:00:00 2001 From: ncantu Date: Mon, 26 Jan 2026 03:43:15 +0100 Subject: [PATCH] Remove source note message from UTXO list page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Motivations:** - Supprimer le message "Source : fichier utxo_list.txt (peut ne pas être à jour). Dernière modif. : ..." de la page UTXO list **Correctifs:** - Suppression de l'élément HTML avec id="source-note" - Suppression du code JavaScript qui mettait à jour ce message - Suppression du style CSS .source-note non utilisé **Pages affectées:** - signet-dashboard/public/utxo-list.html --- signet-dashboard/public/utxo-list.html | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/signet-dashboard/public/utxo-list.html b/signet-dashboard/public/utxo-list.html index a864b05..7a33009 100644 --- a/signet-dashboard/public/utxo-list.html +++ b/signet-dashboard/public/utxo-list.html @@ -153,12 +153,6 @@ color: #666; margin-top: 10px; } - .source-note { - font-size: 0.9em; - color: #666; - margin-top: 10px; - font-style: italic; - } .error { background: #f8d7da; color: #721c24; @@ -326,7 +320,6 @@

0 %

0 ligne(s) parsée(s)

-

Source : fichier utxo_list.txt (peut ne pas être à jour)

@@ -712,11 +705,6 @@ const contentLength = response.headers.get('Content-Length'); const totalBytes = contentLength ? parseInt(contentLength, 10) : 0; - const lastModified = response.headers.get('Last-Modified'); - if (lastModified && document.getElementById('source-note')) { - document.getElementById('source-note').textContent = - 'Source : fichier utxo_list.txt (peut ne pas être à jour). Dernière modif. : ' + new Date(lastModified).toLocaleString('fr-FR'); - } const reader = response.body.getReader(); const decoder = new TextDecoder('utf-8');