Merge pull request #1560 from girirajsharma/master

[KEYCLOAK-1767] Clients table is unsorted
This commit is contained in:
Bill Burke 2015-08-27 09:06:05 -04:00
commit d44541fc9e

View file

@ -33,7 +33,7 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr ng-repeat="client in clients | filter:search"> <tr ng-repeat="client in clients | filter:search | orderBy:'clientId'">
<td><a href="#/realms/{{realm.realm}}/clients/{{client.id}}">{{client.clientId}}</a></td> <td><a href="#/realms/{{realm.realm}}/clients/{{client.id}}">{{client.clientId}}</a></td>
<td>{{client.enabled}}</td> <td>{{client.enabled}}</td>
<td ng-class="{'text-muted': !client.baseUrl}"> <td ng-class="{'text-muted': !client.baseUrl}">