Skip to content

Commit

Permalink
Secondary sort on check name (from PR 317)
Browse files Browse the repository at this point in the history
  • Loading branch information
scobal committed May 1, 2016
1 parent 988f3de commit 927a2e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seyren-web/src/main/webapp/html/checks.html
Expand Up @@ -27,7 +27,7 @@ <h1><strong>Checks</strong></h1>
</tr>
</thead>
<tbody>
<tr ng-repeat="check in checks.values | filter:filter | orderBy:predicate:reverse" ng-click="selectCheck(check.id)" style="cursor: pointer;">
<tr ng-repeat="check in checks.values | filter:filter | orderBy:[predicate,'-name']:reverse" ng-click="selectCheck(check.id)" style="cursor: pointer;">
<td title="{{ check.target }}">
<a href='#/checks/{{ check.id }}'>{{ check.name }}</a>
</td>
Expand Down

0 comments on commit 927a2e8

Please sign in to comment.