mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 19:53:43 +00:00
[PM-12444] remove ngx infinite scroll dependency (#13056)
* replace provider clients components with vNext implementation * remove ngx-infinite-scroll dependency * fix ts strict errors
This commit is contained in:
@@ -139,7 +139,7 @@ export class ClientsComponent {
|
||||
|
||||
async load() {
|
||||
const response = await this.apiService.getProviderClients(this.providerId);
|
||||
const userId = await firstValueFrom(getUserId(this.accountService.activeAccount$));
|
||||
const userId = await firstValueFrom(this.accountService.activeAccount$.pipe(getUserId));
|
||||
const clients = response.data != null && response.data.length > 0 ? response.data : [];
|
||||
this.dataSource.data = clients;
|
||||
this.manageOrganizations =
|
||||
|
||||
Reference in New Issue
Block a user