Order projects in task list alphabetically

Previously, in the task list on the story detail view,
projects just displayed in the order that they loaded. This meant
that groups of tasks might display in a different order each time
a story was viewed, which was confusing (and would make it harder
for a user to find tasks for the project they were
interested in for any given story, as the projects would not be in a
guessable order). This patch orders the projects alphabetically.

Change-Id: I69e4a82e53de9ae5d8cefbe9844f08a3ae26e135
This commit is contained in:
Zara 2016-09-20 17:37:29 +00:00
parent d6ecab337d
commit d6e8bf2a17
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@
<!-- Template for the task list -->
<script type="text/ng-template" id="/inline/task_list.html">
<h3>Tasks</h3>
<div ng-repeat="name in projectNames">
<div ng-repeat="name in projectNames | orderBy">
<h4>
<i class="fa fa-sb-project text-muted"></i>
<a href="#!/project/{{ projects[name].id }}">{{ name }}</a>