Skip to content

Commit

Permalink
#243 Add sort by severity and assignee to case list
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Jun 28, 2017
1 parent 63def06 commit 740140d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ui/app/views/partials/case/list/toolbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,18 @@
<li>
<a ng-click="$vm.sortBy(['-flag', '+startDate'])">Oldest first</a>
</li>
<li>
<a ng-click="$vm.sortBy(['-flag', '-severity'])">High Severity first</a>
</li>
<li>
<a ng-click="$vm.sortBy(['-flag', '+severity'])">Low Severity first</a>
</li>
<li>
<a ng-click="$vm.sortBy(['-flag', '+owner'])">Ascendant assignee</a>
</li>
<li>
<a ng-click="$vm.sortBy(['-flag', '-owner'])">Descendant assignee</a>
</li>
</ul>
</div>

Expand Down

0 comments on commit 740140d

Please sign in to comment.