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

fixes to showAdd and filtering on load for non-admins

This commit is contained in:
Kyle Spearrin
2018-10-17 16:09:09 -04:00
parent af43cd407e
commit 30587d625a
2 changed files with 3 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ export class CiphersComponent extends BaseCiphersComponent {
async load(filter: (cipher: CipherView) => boolean = null) {
if (!this.organization.isAdmin) {
await super.load();
await super.load(filter);
return;
}
this.accessEvents = this.organization.useEvents;