aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.html
diff options
context:
space:
mode:
authorasuyou <asuyou@users.noreply.github.com>2021-11-19 17:57:43 +0000
committerasuyou <asuyou@users.noreply.github.com>2021-11-19 17:57:43 +0000
commit2e591122f2de091f76ddf2bdb57aaf29e72ed6f4 (patch)
tree566e30627e20de46daaf49c325be795cab8a4ec6 /ui/src/app/app.component.html
parentChanged to "any" to work like original (backend) (diff)
downloadmetube-2e591122f2de091f76ddf2bdb57aaf29e72ed6f4.tar.gz
metube-2e591122f2de091f76ddf2bdb57aaf29e72ed6f4.tar.bz2
metube-2e591122f2de091f76ddf2bdb57aaf29e72ed6f4.zip
Quality stays the same if it exists on next format
Diffstat (limited to 'ui/src/app/app.component.html')
-rw-r--r--ui/src/app/app.component.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/app/app.component.html b/ui/src/app/app.component.html
index fda6033..039aab6 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">{{ q.text }}</option>
+ <option *ngFor="let q of qualities" [ngValue]="q.id">{{ q.text }}</option>
</select>
</div>
</div>
bgstack15