1
0
mirror of https://github.com/bitwarden/web synced 2025-12-16 00:03:25 +00:00

[Provider] Add events for Provider Organizations (#1090)

This commit is contained in:
Oscar Hinton
2021-07-21 19:53:21 +02:00
committed by GitHub
parent a94faf06a9
commit c608a489dd
4 changed files with 55 additions and 2 deletions

View File

@@ -58,6 +58,13 @@ export class ClientsComponent implements OnInit {
this.providerId = params.providerId;
await this.load();
const queryParamsSub = this.route.queryParams.subscribe(async qParams => {
this.searchText = qParams.search;
if (queryParamsSub != null) {
queryParamsSub.unsubscribe();
}
});
});
}