aboutsummaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorAlex <alexta69@gmail.com>2019-11-29 22:44:49 +0200
committerAlex <alexta69@gmail.com>2019-11-30 09:40:45 +0200
commita0b1939a3d2c3c69ee36141935a0323c71df44cd (patch)
treee9945e90198566ba21af29ca09fc9b665c8e90d8 /ui
parentadd favicon (diff)
downloadmetube-a0b1939a3d2c3c69ee36141935a0323c71df44cd.tar.gz
metube-a0b1939a3d2c3c69ee36141935a0323c71df44cd.tar.bz2
metube-a0b1939a3d2c3c69ee36141935a0323c71df44cd.zip
add Dockerfile
Diffstat (limited to 'ui')
-rw-r--r--ui/src/app/app.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts
index 0b945db..53d3a57 100644
--- a/ui/src/app/app.component.ts
+++ b/ui/src/app/app.component.ts
@@ -16,7 +16,7 @@ export class AppComponent {
@ViewChild('masterCheckbox', {static: false}) masterCheckbox: ElementRef;
@ViewChild('delSelected', {static: false}) delSelected: ElementRef;
- constructor(private downloads: DownloadsService) {
+ constructor(public downloads: DownloadsService) {
this.downloads.dlChanges.subscribe(() => this.selectionChanged());
}
bgstack15