Fix visualize sort icon bug (#11568) (#11583)

A recent refactor caused this, when the name of the function changed.
This commit is contained in:
Stacey Gammon 2017-05-03 11:05:31 -04:00 committed by GitHub
parent e826536e72
commit 02ad0ac16d

View file

@ -119,7 +119,7 @@
Name
<span
class="kuiIcon"
ng-show="listingController.getSortProperty().name === 'title'"
ng-show="listingController.getSortedProperty().name === 'title'"
ng-class="listingController.isAscending('title') ? 'fa-caret-up' : 'fa-caret-down'"
></span>
</th>
@ -131,7 +131,7 @@
Type
<span
class="kuiIcon"
ng-show="listingController.getSortProperty().name === 'type'"
ng-show="listingController.getSortedProperty().name === 'type'"
ng-class="listingController.isAscending('type') ? 'fa-caret-up' : 'fa-caret-down'"
></span>
</th>