Skip to content

Commit

Permalink
fix card move, after qualitygate changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ssteeltm committed Jan 29, 2025
1 parent 180635f commit 9ee159c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tickets_kanban.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
<div class="kanban-column card card-dark" data-status-id="<?=htmlspecialchars($kanban_column->id); ?>">
<h6 class="panel-title"><?=htmlspecialchars($kanban_column->name); ?></h6>
<div id="status_<?=htmlspecialchars($kanban_column->id); ?>" data-column-name="<?=$kanban_column->name?>" data-status-id="<?=htmlspecialchars($kanban_column->id); ?>" style="height: 100%;" >
<?php
<?php
foreach($kanban_column->tickets as $item){
if ($item['ticket_priority'] == "High") {
$ticket_priority_color = "danger";
Expand Down Expand Up @@ -273,6 +273,7 @@ class="task"
//update the status id of the card if needed
if (statusId != columnId) {
$(card).data('ticket-status-id', columnId);
statusId = columnId;
}
positions.push({
ticket_id: ticketId,
Expand Down

0 comments on commit 9ee159c

Please sign in to comment.