mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
368 B
12 lines
368 B
<a *ngIf="sortable; else notSortable" (click)="sort()" class="pointer truncate">
|
|
<span class="truncate">
|
|
<i *ngIf="order === 'ascending'" class="icon-caret-down"></i>
|
|
<i *ngIf="order === 'descending'" class="icon-caret-up"></i>
|
|
|
|
{{text}}
|
|
</span>
|
|
</a>
|
|
|
|
<ng-template #notSortable>
|
|
<span class="truncate">{{text}}</span>
|
|
</ng-template>
|