1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +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

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