Visualizzatore fermate: migliorie generali.

This commit is contained in:
2025-09-01 14:51:31 +02:00
parent 9075fd0cb8
commit 8ee82a451f
3 changed files with 4 additions and 4 deletions

View File

@@ -36,7 +36,6 @@ function caricadati(){
<th>Orario</th>
<th>Stato attuale</th>
<th>Veicolo</th>
<th>Soppressa</th>
</tr>
`;
table.appendChild(thead);
@@ -54,7 +53,6 @@ function caricadati(){
<td>${item.orario}</td>
<td>${item.stato}</td>
<td>${item.mezzo}</td>
<td>${item.soppressa ? 'Sì' : 'No'}</td>
`;
tbody.appendChild(tr);
});