Sort assets by name

See title.

Change-Id: I55a8f9448b3947d2a19ddd201792cd2786f48ffd
This commit is contained in:
Kevin Fox 2015-07-31 09:28:42 -07:00
parent b281797274
commit c73b3abffe
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
</thead>
<tbody>
<tr ng-repeat-start="asset in assets track by asset.name">
<tr ng-repeat-start="asset in assets | orderBy:'-name':true track by asset.name">
<td class="expander">
<i class="fa fa-chevron-right" hz-expand-detail duration="200"></i>
</td>

View File

@ -22,7 +22,7 @@
</thead>
<tbody>
<tr ng-repeat-start="asset in assets track by asset.name">
<tr ng-repeat-start="asset in assets | orderBy:'-name':true track by asset.name">
<td class="expander">
<i class="fa fa-chevron-right" hz-expand-detail duration="200"></i>
</td>