1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 19:53:43 +00:00

rename some refs

This commit is contained in:
Kyle Spearrin
2018-01-23 23:05:23 -05:00
parent a816961dff
commit e06704431a
3 changed files with 6 additions and 6 deletions

View File

@@ -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>

View File

@@ -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();
}
}