aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/master-checkbox.component.ts
diff options
context:
space:
mode:
authorAlex Shnitman <alexta69@gmail.com>2021-02-01 22:53:31 +0200
committerAlex Shnitman <alexta69@gmail.com>2021-02-02 21:09:28 +0200
commitcb8f820d73525f637b648a0f8c33157f70bbd535 (patch)
tree3c16393594068609f5a3c7011eea992ead1f40ce /ui/src/app/master-checkbox.component.ts
parentMerge pull request #17 from Rpsl/master (diff)
downloadmetube-cb8f820d73525f637b648a0f8c33157f70bbd535.tar.gz
metube-cb8f820d73525f637b648a0f8c33157f70bbd535.tar.bz2
metube-cb8f820d73525f637b648a0f8c33157f70bbd535.zip
upgrade dependencies (migrate to Angular 10)
Diffstat (limited to 'ui/src/app/master-checkbox.component.ts')
-rw-r--r--ui/src/app/master-checkbox.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/app/master-checkbox.component.ts b/ui/src/app/master-checkbox.component.ts
index 683ea71..8c8208a 100644
--- a/ui/src/app/master-checkbox.component.ts
+++ b/ui/src/app/master-checkbox.component.ts
@@ -18,7 +18,7 @@ export class MasterCheckboxComponent {
@Input() list: Map<String, Checkable>;
@Output() changed = new EventEmitter<number>();
- @ViewChild('masterCheckbox', {static: false}) masterCheckbox: ElementRef;
+ @ViewChild('masterCheckbox') masterCheckbox: ElementRef;
selected: boolean;
clicked() {
bgstack15