diff options
Diffstat (limited to 'ui/src')
-rw-r--r-- | ui/src/app/app.component.ts | 2 |
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()); } |