1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

set org and collections on add based on filters

This commit is contained in:
Kyle Spearrin
2018-10-29 22:43:02 -04:00
parent fc18a361d9
commit 435cad12c7
4 changed files with 28 additions and 1 deletions

View File

@@ -27,7 +27,12 @@ export class AddEditComponent extends BaseAddEditComponent implements OnChanges
userService, collectionService);
}
async ngOnInit() {
// We use ngOnChanges instead.
}
async ngOnChanges() {
await super.init();
await super.load();
}
}