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

hasLoaded moved to load method

This commit is contained in:
Kyle Spearrin
2018-12-11 22:10:26 -05:00
parent 8f57ada128
commit b44eee8d81
3 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,6 @@ export class WeakPasswordsReportComponent implements OnInit {
async ngOnInit() {
await this.load();
this.hasLoaded = true;
}
async load() {
@@ -54,6 +53,7 @@ export class WeakPasswordsReportComponent implements OnInit {
});
this.ciphers = weakPasswordCiphers;
this.loading = false;
this.hasLoaded = true;
}
selectCipher(cipher: CipherView) {