mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 19:53:43 +00:00
rename some refs
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<div id="vault">
|
||||
<app-vault-groupings id="categories"></app-vault-groupings>
|
||||
<app-vault-ciphers id="items" [ciphers]="vaultCiphers"></app-vault-ciphers>
|
||||
<app-vault-groupings id="groupings"></app-vault-groupings>
|
||||
<app-vault-ciphers id="items" [ciphers]="ciphers"></app-vault-ciphers>
|
||||
<app-vault-view id="details" [cipherId]="null"></app-vault-view>
|
||||
</div>
|
||||
|
||||
@@ -12,13 +12,13 @@ import { CipherService } from 'jslib/abstractions/cipher.service';
|
||||
template: template,
|
||||
})
|
||||
export class VaultComponent implements OnInit {
|
||||
vaultCiphers: any[];
|
||||
ciphers: any[];
|
||||
|
||||
constructor(private cipherService: CipherService) {
|
||||
|
||||
}
|
||||
|
||||
async ngOnInit() {
|
||||
this.vaultCiphers = await this.cipherService.getAllDecrypted();
|
||||
this.ciphers = await this.cipherService.getAllDecrypted();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user