Skip to content

Commit

Permalink
fix: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Oct 13, 2023
1 parent c88d9f5 commit 53c1e2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uniticket/uni_ticket/views/operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def dashboard(request, structure_slug, structure, office_employee):
unassigned = True

# chiusi = tickets.filter(is_closed=True).count()
ticket_codes = not_closed.values_list('ticket__code', flat=True).distinct()
ticket_codes = not_closed.values_list('code', flat=True).distinct()
messages = TicketReply.get_unread_messages_count(ticket_codes=ticket_codes)

d = {
Expand Down

0 comments on commit 53c1e2c

Please sign in to comment.