aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.ts
diff options
context:
space:
mode:
authorashnitman <alex.shnitman@cyberark.com>2021-01-12 20:12:21 +0200
committerashnitman <alex.shnitman@cyberark.com>2021-01-12 20:12:21 +0200
commit490f679b388c17547f0563401839df0dc942bd0d (patch)
treedd8f0c9835110c614e7950453dfcc2475d0a67be /ui/src/app/app.component.ts
parentupgrade dependencies (diff)
downloadmetube-490f679b388c17547f0563401839df0dc942bd0d.tar.gz
metube-490f679b388c17547f0563401839df0dc942bd0d.tar.bz2
metube-490f679b388c17547f0563401839df0dc942bd0d.zip
add 1440p quality (closes #11)
Diffstat (limited to 'ui/src/app/app.component.ts')
-rw-r--r--ui/src/app/app.component.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts
index 7bb8181..7a18d28 100644
--- a/ui/src/app/app.component.ts
+++ b/ui/src/app/app.component.ts
@@ -13,6 +13,7 @@ export class AppComponent implements AfterViewInit {
addUrl: string;
qualities: Array<Object> = [
{id: "best", text: "Best"},
+ {id: "1440p", text: "1440p"},
{id: "1080p", text: "1080p"},
{id: "720p", text: "720p"},
{id: "480p", text: "480p"}
bgstack15