1
0
mirror of https://github.com/bitwarden/web synced 2026-01-06 10:33:17 +00:00

aot compilation fixes

This commit is contained in:
Kyle Spearrin
2018-07-09 17:07:13 -04:00
parent 637120d0c5
commit a45c77bda9
4 changed files with 26 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ export class ShareComponent implements OnInit, OnDestroy {
(c as any).checked = select == null ? !(c as any).checked : select;
}
selectAll(select: false) {
selectAll(select: boolean) {
const collections = select ? this.collections : this.writeableCollections;
collections.forEach((c) => this.check(c, select));
}