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');