2
0
Fork 0

feat(fallback): sort team members by their id as well
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luca 2024-05-22 23:13:43 +02:00
parent c70965c46d
commit 33a07a0415
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ def team_members(request):
shift_count=Count("fallback_shifts") shift_count=Count("fallback_shifts")
) )
.filter(fallback_shifts__gt=0) .filter(fallback_shifts__gt=0)
.order_by("name") .order_by("name", "id")
) )
) )
response.headers["Content-Type"] = "text/plain; charset=utf-8" response.headers["Content-Type"] = "text/plain; charset=utf-8"