diff --git a/src/app/modules/vault-filter/components/organization-filter.component.html b/src/app/modules/vault-filter/components/organization-filter.component.html index 11459bf326a..4844237bac6 100644 --- a/src/app/modules/vault-filter/components/organization-filter.component.html +++ b/src/app/modules/vault-filter/components/organization-filter.component.html @@ -78,14 +78,12 @@ - +
+ +
@@ -140,7 +138,7 @@ {{ organization.name }} - + diff --git a/src/app/modules/vault-filter/vault-filter.component.html b/src/app/modules/vault-filter/vault-filter.component.html index 94077a68095..e707474436b 100644 --- a/src/app/modules/vault-filter/vault-filter.component.html +++ b/src/app/modules/vault-filter/vault-filter.component.html @@ -26,19 +26,17 @@ autocomplete="off" appAutofocus /> -
- -
+
{ - // this.ciphersComponent.searchText = this.vaultFilterComponent.search = qParams.search; + this.ciphersComponent.searchText = this.vaultFilterComponent.searchText = qParams.search; if (!this.organization.canViewAllCollections) { await this.syncService.fullSync(false); this.broadcasterService.subscribe(BroadcasterSubscriptionId, (message: any) => { diff --git a/src/app/organizations/vault/ciphers.component.ts b/src/app/organizations/vault/ciphers.component.ts index f57df2d1352..2960b9ae999 100644 --- a/src/app/organizations/vault/ciphers.component.ts +++ b/src/app/organizations/vault/ciphers.component.ts @@ -58,7 +58,8 @@ export class CiphersComponent extends BaseCiphersComponent { ); } - async load(filter: (cipher: CipherView) => boolean = null) { + async load(filter: (cipher: CipherView) => boolean = null, deleted = false) { + this.deleted = deleted || false; if (this.organization.canEditAnyCollection) { this.accessEvents = this.organization.useEvents; this.allCiphers = await this.cipherService.getAllFromApiForOrganization(this.organization.id); diff --git a/src/scss/vault-filters.scss b/src/scss/vault-filters.scss index e0e38da7e0b..552b0f75df7 100644 --- a/src/scss/vault-filters.scss +++ b/src/scss/vault-filters.scss @@ -28,8 +28,6 @@ h3, button.filter-button { - text-transform: uppercase; - text-transform: uppercase; margin: 0; @include themify($themes) { color: themed("textMuted");