Update interface.html

Added steps
master
Andy Smy 2025-05-10 09:14:31 +01:00 committed by GitHub
parent fb4fcf4a31
commit bd9767a106
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@ function getData() {
<th>Ball</th>
<th>Event</th>
<th>Metadata</th>
<th>Steps</th>
</tr>`+data.trim().split("\n").map(l=>{
l = l.split(",");
return `<tr>
@ -42,6 +43,7 @@ function getData() {
<td align="center">${l[2]}</td>
<td>${l[3]}</td>
<td>${l[4]}</td>
<td>${l[5]}</td>
</tr>`
}).join("\n")+"</table>";
});