mirror of
https://github.com/bitwarden/web
synced 2025-12-10 13:23:15 +00:00
Specify organization id as the indexing entity (#945)
* Specify organization id as the indexing entity * Update jslib
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: aca098645a...090ad790f5
@@ -46,7 +46,7 @@ export class CiphersComponent extends BaseCiphersComponent {
|
|||||||
}
|
}
|
||||||
this.accessEvents = this.organization.useEvents;
|
this.accessEvents = this.organization.useEvents;
|
||||||
this.allCiphers = await this.cipherService.getAllFromApiForOrganization(this.organization.id);
|
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);
|
await this.applyFilter(filter);
|
||||||
this.loaded = true;
|
this.loaded = true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user