Skip to content

Commit

Permalink
fix: desc/asc icon reversed in field dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
felixroos committed Mar 29, 2019
1 parent 9ea65ad commit add3ee6
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -28,8 +28,8 @@
<li class="dropdown-option" *ngFor="let field of list?.sortableFields()"
[class.is-active]="list?.isSorted(field.property, true)">
<a (click)="list.toggleSort(field.property)" class="sorting-option"
[class.is-sorted-asc]="list?.isSorted(field.property, false)"
[class.is-sorted-desc]="list?.isSorted(field.property, true)">
[class.is-sorted-asc]="list?.isSorted(field.property, true)"
[class.is-sorted-desc]="list?.isSorted(field.property, false)">
<span class="sorting-option-indicator"></span>
{{fieldLabel(field)}}
</a>
Expand Down

0 comments on commit add3ee6

Please sign in to comment.