1
0
mirror of https://github.com/bitwarden/web synced 2025-12-27 05:33:19 +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

@@ -124,7 +124,7 @@ export class VaultComponent implements OnInit, OnDestroy {
}
async clearGroupingFilters() {
this.ciphersComponent.showAddNew = true;
this.ciphersComponent.showAddNew = this.showAdd;
this.groupingsComponent.searchPlaceholder = this.i18nService.t('searchVault');
await this.ciphersComponent.applyFilter();
this.clearFilters();
@@ -132,7 +132,7 @@ export class VaultComponent implements OnInit, OnDestroy {
}
async filterCipherType(type: CipherType, load = false) {
this.ciphersComponent.showAddNew = true;
this.ciphersComponent.showAddNew = this.showAdd;
this.groupingsComponent.searchPlaceholder = this.i18nService.t('searchType');
const filter = (c: CipherView) => c.type === type;
if (load) {