diff --git a/app/Domain/Tickets/Hxcontrollers/TicketColumn.php b/app/Domain/Tickets/Hxcontrollers/TicketColumn.php index b9931aba4..fda6cebde 100644 --- a/app/Domain/Tickets/Hxcontrollers/TicketColumn.php +++ b/app/Domain/Tickets/Hxcontrollers/TicketColumn.php @@ -31,7 +31,7 @@ public function get($params): void { // $ticketId = (int) ($params['id']); $statusKey = (int) ($params['status']); - $allTickets = $this->ticketService->getAll(['status' => $statusKey]); + $allTickets = $this->ticketService->getAll($params); $ticketTypeIcons = $this->ticketService->getTypeIcons(); $priorities = $this->ticketService->getPriorityLabels(); $efforts = $this->ticketService->getEffortLabels(); diff --git a/app/Domain/Tickets/Templates/includes/ticketFilterHx.blade.php b/app/Domain/Tickets/Templates/includes/ticketFilterHx.blade.php new file mode 100644 index 000000000..50044189a --- /dev/null +++ b/app/Domain/Tickets/Templates/includes/ticketFilterHx.blade.php @@ -0,0 +1,266 @@ +get('groupByOptions'); +$sortBy = $tpl->get('sortOptions'); +$searchCriteria = $tpl->get('searchCriteria'); +$statusLabels = $tpl->get('allTicketStates'); +$taskToggle = $tpl->get('enableTaskTypeToggle'); + +?> +
+ + diff --git a/app/Domain/Tickets/Templates/showKanban.blade.php b/app/Domain/Tickets/Templates/showKanban.blade.php index 2e94fa33f..0db9f85f2 100644 --- a/app/Domain/Tickets/Templates/showKanban.blade.php +++ b/app/Domain/Tickets/Templates/showKanban.blade.php @@ -25,7 +25,7 @@