Add Label to add column on invoice add ticket modal

This commit is contained in:
o-psi 2024-01-10 21:09:07 +00:00
parent 4ed2c7923c
commit 945eb7c87a
1 changed files with 2 additions and 3 deletions

View File

@ -13,7 +13,7 @@
<tr>
<th>Ticket Number</th>
<th>Scope</th>
<th></th>
<th>Add to Invoice</th>
</tr>
<?php while ($row = mysqli_fetch_array($sql_tickets_billable)) {
$ticket_id = intval($row['ticket_id']);
@ -24,8 +24,7 @@
<td><?php echo $ticket_subject ?></td>
<td></td>
<td><a href='ticket.php?ticket_id=<?php echo $ticket_id?>&invoice_id=<?php echo $invoice_id?>#addInvoiceFromTicketModal'>
<i class="fas fa-fw fa-plus-circle"></i>
</td>
<i class="fas fa-fw fa-plus-circle"></i></td>
</tr>
<?php } ?>
</table>