diff options
author | asuyou <asuyou@users.noreply.github.com> | 2021-11-03 21:57:34 +0000 |
---|---|---|
committer | asuyou <asuyou@users.noreply.github.com> | 2021-11-04 22:36:53 +0000 |
commit | 26798a4930da04d5ce4d54742e0d8ca8d802e9ba (patch) | |
tree | 26162a1c828660f775e7c68a11bd12590c2c13c8 /ui/src/app/app.component.html | |
parent | Automatically switches to best on format change (diff) | |
download | metube-26798a4930da04d5ce4d54742e0d8ca8d802e9ba.tar.gz metube-26798a4930da04d5ce4d54742e0d8ca8d802e9ba.tar.bz2 metube-26798a4930da04d5ce4d54742e0d8ca8d802e9ba.zip |
Any now shows all avaliable formats
Diffstat (limited to 'ui/src/app/app.component.html')
-rw-r--r-- | ui/src/app/app.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/app/app.component.html b/ui/src/app/app.component.html index 039aab6..fda6033 100644 --- a/ui/src/app/app.component.html +++ b/ui/src/app/app.component.html @@ -29,7 +29,7 @@ <span class="input-group-text">Quality</span> </div> <select class="custom-select" name="quality" [(ngModel)]="quality" (change)="qualityChanged()" [disabled]="addInProgress || downloads.loading"> - <option *ngFor="let q of qualities" [ngValue]="q.id">{{ q.text }}</option> + <option *ngFor="let q of qualities" [ngValue]="q">{{ q.text }}</option> </select> </div> </div> |