Skip to content

Commit

Permalink
fix: priority unuseful in get all tickets
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Nov 22, 2024
1 parent c23d7df commit f0aa8f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion uniticket/uni_ticket/views/datatables.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,8 @@ def manager_all_tickets(request, structure_slug, structure):
:return: JsonResponse
"""
tickets = TicketAssignment.get_ticket_per_structure(structure=structure)
tickets = TicketAssignment.get_ticket_per_structure(structure=structure,
priority_first=False)
dtd = TicketDTD(request, tickets, _ticket_columns)
return JsonResponse(dtd.get_dict())

Expand Down

0 comments on commit f0aa8f0

Please sign in to comment.