* avatar content-type fix
* team default empty values are empty array * page caches only updated if there is actually a filter id set for the team
This commit is contained in:
@@ -377,8 +377,8 @@ class Team implements JsonSerializable
|
||||
return [
|
||||
'id' => $this->getId(),
|
||||
'name' => $this->getName(),
|
||||
'members' => $this->getMembers(),
|
||||
'labels' => $this->getLabels(),
|
||||
'members' => $this->getMembers() ?? [],
|
||||
'labels' => $this->getLabels() ?? [],
|
||||
'filterId' => $this->getFilterId(),
|
||||
'backlogColumn' => $this->getBacklogColumn() ?? new KanbanColumn(),
|
||||
'inprogressColumn' => $this->getInprogressColumn() ?? new KanbanColumn(),
|
||||
|
||||
Reference in New Issue
Block a user