1
0
mirror of https://github.com/bitwarden/web synced 2026-01-21 11:53:22 +00:00

null checks on query param sub

This commit is contained in:
Kyle Spearrin
2019-01-16 23:30:32 -05:00
parent 47bda7d789
commit 650fc6aa27
9 changed files with 25 additions and 9 deletions

View File

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