aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.ts
diff options
context:
space:
mode:
authorCavazzaTommaso <tommaso.cavazza@studenti.univr.it>2022-09-01 11:12:55 +0200
committerCavazzaTommaso <tommaso.cavazza@studenti.univr.it>2022-09-01 11:12:55 +0200
commit2a227bc760e553a17bee1799f22b46802483d9d8 (patch)
treebc0e55fa86aaffa29adae136449af884b9611fca /ui/src/app/app.component.ts
parentupgraded yt-dlp (diff)
downloadmetube-2a227bc760e553a17bee1799f22b46802483d9d8.tar.gz
metube-2a227bc760e553a17bee1799f22b46802483d9d8.tar.bz2
metube-2a227bc760e553a17bee1799f22b46802483d9d8.zip
Added download button to the ui
For personal needs, I've added the download button to the completed downloads
Diffstat (limited to 'ui/src/app/app.component.ts')
-rw-r--r--ui/src/app/app.component.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts
index a9b46a3..3b6d804 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, faExternalLinkAlt } from '@fortawesome/free-solid-svg-icons';
+import { faRedoAlt, faSun, faMoon, faExternalLinkAlt, faDownload } from '@fortawesome/free-solid-svg-icons';
import { CookieService } from 'ngx-cookie-service';
import { DownloadsService, Status } from './downloads.service';
@@ -34,6 +34,7 @@ export class AppComponent implements AfterViewInit {
faRedoAlt = faRedoAlt;
faSun = faSun;
faMoon = faMoon;
+ faDownload = faDownload;
faExternalLinkAlt = faExternalLinkAlt;
constructor(public downloads: DownloadsService, private cookieService: CookieService) {
bgstack15