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