aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.html
diff options
context:
space:
mode:
authorAlex <alexta69@gmail.com>2021-11-20 10:14:03 +0200
committerGitHub <noreply@github.com>2021-11-20 10:14:03 +0200
commitf61ecc147636868027d957c8255903525022e198 (patch)
treef140c3c5ad806c197f1abcf259ad2db9bcc1323b /ui/src/app/app.component.html
parentfix breakage after upgrade (diff)
parentsimplified format handling (diff)
downloadmetube-f61ecc147636868027d957c8255903525022e198.tar.gz
metube-f61ecc147636868027d957c8255903525022e198.tar.bz2
metube-f61ecc147636868027d957c8255903525022e198.zip
Merge pull request #73 from asuyou/mp3-support
Added simple MP3 support
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 20a78b4..039aab6 100644
--- a/ui/src/app/app.component.html
+++ b/ui/src/app/app.component.html
@@ -26,7 +26,7 @@
<div class="col-md-5 add-url-component">
<div class="input-group">
<div class="input-group-prepend">
- <span class="input-group-text">Video quality</span>
+ <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>
bgstack15