Added total time worked for all tickets in project details

This commit is contained in:
johnnyq
2024-04-08 15:19:35 -04:00
parent ea85094be8
commit 6435ffde67
2 changed files with 14 additions and 1 deletions

View File

@@ -330,7 +330,7 @@ if (isset($_GET['ticket_id'])) {
<?php }
// Time tracking
if (!empty($ticket_total_reply_time)) { ?>
if ($ticket_total_reply_time) { ?>
<div class="mt-1">
<i class="far fa-fw fa-clock text-secondary mr-2"></i>Total time worked: <?php echo $ticket_total_reply_time; ?>
</div>