bug-fix-patch

This commit is contained in:
Manish Verma
2016-10-31 13:06:39 +05:30
parent 6a06167063
commit 91dacdd998
3 changed files with 4 additions and 7 deletions

View File

@@ -2537,7 +2537,7 @@ class TicketController extends Controller
}
$priority = DB::table('ticket_priority')->select('priority_desc', 'priority_color')->where('priority_id', '=', $ticket->priority_id)->first();
if ($priority != null) {
$prio = '<button class="btn btn-xs '.$rep.'" style="background-color: '.$priority->priority_color.'">'.ucfirst($priority->priority_desc).'</button>';
$prio = '<button class="btn btn-xs '.$rep.'" style="background-color: '.$priority->priority_color.'; color:#F9F9F9">'.ucfirst($priority->priority_desc).'</button>';
} else {
$prio = '';
}