aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.ts
diff options
context:
space:
mode:
authorErazor2 <jeromewhweb@gmail.com>2022-01-04 22:04:53 +0000
committerErazor2 <jeromewhweb@gmail.com>2022-01-04 22:04:53 +0000
commitd11934f3d820188065519c7e32a8d1502ee1007d (patch)
tree190e5051b83df0d576dc79b0c276c7148ff4d907 /ui/src/app/app.component.ts
parentupgraded yt-dlp (diff)
downloadmetube-d11934f3d820188065519c7e32a8d1502ee1007d.tar.gz
metube-d11934f3d820188065519c7e32a8d1502ee1007d.tar.bz2
metube-d11934f3d820188065519c7e32a8d1502ee1007d.zip
Added URL-Button
Diffstat (limited to 'ui/src/app/app.component.ts')
-rw-r--r--ui/src/app/app.component.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts
index 8f7d965..2ae880b 100644
--- a/ui/src/app/app.component.ts
+++ b/ui/src/app/app.component.ts
@@ -1,6 +1,6 @@
import { Component, ViewChild, ElementRef, AfterViewInit } from '@angular/core';
import { faTrashAlt, faCheckCircle, faTimesCircle } from '@fortawesome/free-regular-svg-icons';
-import { faRedoAlt, faSun, faMoon } from '@fortawesome/free-solid-svg-icons';
+import { faRedoAlt, faSun, faMoon, faExternalLinkAlt } from '@fortawesome/free-solid-svg-icons';
import { CookieService } from 'ngx-cookie-service';
import { DownloadsService, Status } from './downloads.service';
@@ -33,7 +33,8 @@ export class AppComponent implements AfterViewInit {
faTimesCircle = faTimesCircle;
faRedoAlt = faRedoAlt;
faSun = faSun;
- faMoon = faMoon;
+ faMoon = faMoon;
+ faExternalLinkAlt = faExternalLinkAlt;
constructor(public downloads: DownloadsService, private cookieService: CookieService) {
this.format = cookieService.get('metube_format') || 'any';
bgstack15