Removed Task Order Input from Task edit modal as this is done by dragging and dropping now

This commit is contained in:
johnnyq 2025-02-11 17:29:53 -05:00
parent 228a457518
commit a2e16f918c
2 changed files with 0 additions and 11 deletions

View File

@ -24,16 +24,6 @@
</div>
</div>
<div class="form-group">
<label>Order</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-sort-numeric-down"></i></span>
</div>
<input type="number" class="form-control" name="order" placeholder="Order" value="<?php echo $task_order; ?>">
</div>
</div>
<div class="form-group">
<label>Estimated Completion Time <span class="text-secondary">(Minutes)</span></label>
<div class="input-group">

View File

@ -923,7 +923,6 @@ if (isset($_GET['ticket_id'])) {
while($row = mysqli_fetch_array($sql_tasks)){
$task_id = intval($row['task_id']);
$task_name = nullable_htmlentities($row['task_name']);
$task_order = intval($row['task_order']);
//$task_description = nullable_htmlentities($row['task_description']); // not in db yet
$task_completion_estimate = intval($row['task_completion_estimate']);
$task_completed_at = nullable_htmlentities($row['task_completed_at']);