mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-07 20:10:03 +03:00
14 lines
663 B
HTML
14 lines
663 B
HTML
<div>
|
|
<div style="display: inline-block;">
|
|
<mat-form-field appearance="outline" style="width: 165px;">
|
|
<mat-select [(ngModel)]="this.sortProperty" (selectionChange)="emitSortOptionChanged()">
|
|
<mat-option *ngFor="let sortOption of sortProperties | keyvalue" [value]="sortOption.key">
|
|
{{sortOption['value']['label']}}
|
|
</mat-option>
|
|
</mat-select>
|
|
</mat-form-field>
|
|
</div>
|
|
<div class="sort-dir-div">
|
|
<button (click)="toggleModeChange()" mat-icon-button><mat-icon>{{descendingMode ? 'arrow_downward' : 'arrow_upward'}}</mat-icon></button>
|
|
</div>
|
|
</div> |