add Dockerfile

This commit is contained in:
Alex
2019-11-29 22:44:49 +02:00
parent 9d6d4a2fb8
commit a0b1939a3d
2 changed files with 31 additions and 1 deletions

View File

@@ -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());
}