* fixVersions added, to filter items in DÖNER
This commit is contained in:
@@ -235,7 +235,7 @@ class KanbanBoard implements \JsonSerializable
|
||||
private function updatedAtReverseSort(array $toSort): array
|
||||
{
|
||||
$toSort = array_filter($toSort, function(KanbanEntry $item){
|
||||
return $item->getAssignee() != null;
|
||||
return $item->getAssignee() != null && empty($item->getFixVersions());
|
||||
});
|
||||
usort($toSort, function(KanbanEntry $a, KanbanEntry $b){
|
||||
return $b->getUpdatedAt() <=> $a->getUpdatedAt();
|
||||
|
||||
Reference in New Issue
Block a user