mirror of https://github.com/itflow-org/itflow
Merge pull request #3 from twetech:client-replied-warning-badge
Add ticket status color for "Client-Replied"
This commit is contained in:
commit
6bceb4b33b
|
|
@ -313,6 +313,8 @@ $user_active_assigned_tickets = intval($row['total_tickets_assigned']);
|
||||||
$ticket_status_color = "success";
|
$ticket_status_color = "success";
|
||||||
} elseif ($ticket_status == "Closed") {
|
} elseif ($ticket_status == "Closed") {
|
||||||
$ticket_status_color = "dark";
|
$ticket_status_color = "dark";
|
||||||
|
} elseif ($ticket_status == "Client-Replied") {
|
||||||
|
$ticket_status_color = "warning";
|
||||||
} else{
|
} else{
|
||||||
$ticket_status_color = "secondary";
|
$ticket_status_color = "secondary";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue