From f6eec08b70616129a2ec4802bdf2148bc728f206 Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Fri, 23 Apr 2021 09:41:10 -0500 Subject: [PATCH] Specify organization id as the indexing entity (#945) * Specify organization id as the indexing entity * Update jslib --- jslib | 2 +- src/app/organizations/vault/ciphers.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index aca09864..090ad790 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit aca098645a21eef496e21d7c3a942cf6a83ff7bc +Subproject commit 090ad790f5ace3526ce8202d2ac74751e6618587 diff --git a/src/app/organizations/vault/ciphers.component.ts b/src/app/organizations/vault/ciphers.component.ts index efa3d80d..f26c9c90 100644 --- a/src/app/organizations/vault/ciphers.component.ts +++ b/src/app/organizations/vault/ciphers.component.ts @@ -46,7 +46,7 @@ export class CiphersComponent extends BaseCiphersComponent { } this.accessEvents = this.organization.useEvents; this.allCiphers = await this.cipherService.getAllFromApiForOrganization(this.organization.id); - await this.searchService.indexCiphers(this.allCiphers); + await this.searchService.indexCiphers(this.organization.id, this.allCiphers); await this.applyFilter(filter); this.loaded = true; }