From cb8f820d73525f637b648a0f8c33157f70bbd535 Mon Sep 17 00:00:00 2001 From: Alex Shnitman Date: Mon, 1 Feb 2021 22:53:31 +0200 Subject: upgrade dependencies (migrate to Angular 10) --- ui/src/app/app.component.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ui/src/app/app.component.ts') diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts index 7a18d28..8202b4d 100644 --- a/ui/src/app/app.component.ts +++ b/ui/src/app/app.component.ts @@ -21,12 +21,12 @@ export class AppComponent implements AfterViewInit { quality: string = "best"; addInProgress = false; - @ViewChild('queueMasterCheckbox', {static: false}) queueMasterCheckbox: MasterCheckboxComponent; - @ViewChild('queueDelSelected', {static: false}) queueDelSelected: ElementRef; - @ViewChild('doneMasterCheckbox', {static: false}) doneMasterCheckbox: MasterCheckboxComponent; - @ViewChild('doneDelSelected', {static: false}) doneDelSelected: ElementRef; - @ViewChild('doneClearCompleted', {static: false}) doneClearCompleted: ElementRef; - @ViewChild('doneClearFailed', {static: false}) doneClearFailed: ElementRef; + @ViewChild('queueMasterCheckbox') queueMasterCheckbox: MasterCheckboxComponent; + @ViewChild('queueDelSelected') queueDelSelected: ElementRef; + @ViewChild('doneMasterCheckbox') doneMasterCheckbox: MasterCheckboxComponent; + @ViewChild('doneDelSelected') doneDelSelected: ElementRef; + @ViewChild('doneClearCompleted') doneClearCompleted: ElementRef; + @ViewChild('doneClearFailed') doneClearFailed: ElementRef; faTrashAlt = faTrashAlt; faCheckCircle = faCheckCircle; -- cgit