Skip to content

Commit

Permalink
Merge pull request getsentry#828 from vortec/master
Browse files Browse the repository at this point in the history
Team -> Projects: Sort project list by slug
  • Loading branch information
dcramer committed Mar 8, 2013
2 parents c6387a4 + f731de7 commit 2b4aa2d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/sentry/web/frontend/teams.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ def manage_team_projects(request, team):
return HttpResponseRedirect(reverse('sentry'))

project_list = list(team.project_set.all())
project_list.sort(key=lambda o: o.slug)

context = csrf(request)
context.update({
Expand Down

0 comments on commit 2b4aa2d

Please sign in to comment.