Skip to content

Commit

Permalink
fix: <td> in table
Browse files Browse the repository at this point in the history
  • Loading branch information
monicaimendes committed Aug 19, 2022
1 parent 9b8081a commit 64b4d77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/reservas-evento.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const reservationList = async () => {
table.innerHTML += `
<tr>
<th scope="row">${reservations.indexOf(item) + 1}</th>
<td>${item['event'].scheduled}<td>
<td>${item['event'].scheduled}</td>
<td>${item.owner_name}</td>
<td>${item.owner_email}</td>
<td>${item.number_tickets}</td>
Expand Down
2 changes: 1 addition & 1 deletion reservas-evento.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ <h1>Gerenciamento de reservas: </h1>
<tr>
<th scope="col">#</th>
<th scope="col">Data</th>
<th scope="col">Evento</th>
<th scope="col">Nome</th>
<th scope="col">Email</th>
<th scope="col">Tickets</th>
</tr>
Expand Down

0 comments on commit 64b4d77

Please sign in to comment.