Fix striped Table

This commit is contained in:
o-psi 2024-01-10 21:15:25 +00:00
parent 6ca277a636
commit 25c26cc2a6
1 changed files with 7 additions and 5 deletions

View File

@ -11,11 +11,13 @@
<div class="modal-body bg-white">
<div class="table-responsive">
<table class="table table-striped">
<tr>
<th>Ticket Number</th>
<th>Scope</th>
<th class="text-right">Add to Invoice</th>
</tr>
<thead>
<tr>
<th>Ticket Number</th>
<th>Scope</th>
<th class="text-right">Add to Invoice</th>
</tr>
</thead>
<?php while ($row = mysqli_fetch_array($sql_tickets_billable)) {
$ticket_id = intval($row['ticket_id']);
$ticket_subject = nullable_htmlentities($row['ticket_subject']);