Skip to content

Commit

Permalink
#242 Fix the alerts list sort by severity
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Jun 20, 2017
1 parent 959b5b2 commit dd4a0a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/app/views/partials/alert/list/toolbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@
<a ng-click="$vm.sortBy(['+date'])">Oldest first</a>
</li>
<li>
<a ng-click="$vm.sortBy(['-threatLevel'])">High Severity first</a>
<a ng-click="$vm.sortBy(['-severity'])">High Severity first</a>
</li>
<li>
<a ng-click="$vm.sortBy(['+threatLevel'])">Low Severity first</a>
<a ng-click="$vm.sortBy(['+severity'])">Low Severity first</a>
</li>
</ul>
</div>
Expand Down

0 comments on commit dd4a0a5

Please sign in to comment.