aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/video-list/video-sort.component.html
blob: 3bece0b224110ef1b5b9711256bca64f173c46fc (plain) (blame)
1
2
3
4
5
<select class="form-control input-sm" [(ngModel)]="currentSort" (ngModelChange)="onSortChange()">
  <option *ngFor="let choice of choiceKeys" [value]="choice">
    {{ getStringChoice(choice) }}
  </option>
</select>