mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-25 12:15:18 +01:00
Fix Copy Verification Code not showing after first log in (#1459)
* Move init logic to load()
This commit is contained in:
parent
ff6bb236c0
commit
aee8a2661e
@ -55,14 +55,17 @@ export class CiphersComponent extends BaseCiphersComponent implements OnDestroy
|
|||||||
super(searchService);
|
super(searchService);
|
||||||
}
|
}
|
||||||
|
|
||||||
async ngOnInit() {
|
|
||||||
this.userHasPremiumAccess = await this.stateService.getCanAccessPremium();
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnDestroy() {
|
ngOnDestroy() {
|
||||||
this.selectAll(false);
|
this.selectAll(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// load() is called after the page loads and the first sync has completed.
|
||||||
|
// Do not use ngOnInit() for anything that requires sync data.
|
||||||
|
async load(filter: (cipher: CipherView) => boolean = null, deleted: boolean = false) {
|
||||||
|
await super.load(filter, deleted);
|
||||||
|
this.userHasPremiumAccess = await this.stateService.getCanAccessPremium();
|
||||||
|
}
|
||||||
|
|
||||||
loadMore() {
|
loadMore() {
|
||||||
if (this.ciphers.length <= this.pageSize) {
|
if (this.ciphers.length <= this.pageSize) {
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user