Skip to content

Commit

Permalink
#1716 Fix the sort by assignee menu
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Dec 21, 2020
1 parent 5b1af82 commit fd948c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/app/views/partials/case/list/toolbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@
<a ng-click="$vm.sortBy(['-flag', '+severity'])">Low Severity first</a>
</li>
<li>
<a ng-click="$vm.sortBy(['-flag', '+owner'])">Ascendant assignee</a>
<a ng-click="$vm.sortBy(['-flag', '+assignee'])">Ascendant assignee</a>
</li>
<li>
<a ng-click="$vm.sortBy(['-flag', '-owner'])">Descendant assignee</a>
<a ng-click="$vm.sortBy(['-flag', '-assignee'])">Descendant assignee</a>
</li>
</ul>
</div>
Expand Down

0 comments on commit fd948c5

Please sign in to comment.