mirror of https://github.com/itflow-org/itflow
Added missing select2 class to ticket status dropdown
This commit is contained in:
parent
2a16b6d2ae
commit
9587827792
|
|
@ -264,7 +264,7 @@ $user_active_assigned_tickets = $row['total_tickets_assigned'];
|
|||
<div class="col-md-2">
|
||||
<div class="form-group">
|
||||
<label>Ticket Status</label>
|
||||
<select class="form-control" name="status">
|
||||
<select class="form-control select2" name="status">
|
||||
<option value="%" <?php if($status == "%"){echo "selected";}?> >Any</option>
|
||||
<option value="Open" <?php if($status == "Open"){echo "selected";}?> >Open</option>
|
||||
<option value="Closed" <?php if($status == "Closed"){echo "selected";}?> >Closed</option>
|
||||
|
|
|
|||
Loading…
Reference in New Issue