mirror of
https://github.com/bitwarden/browser
synced 2026-02-11 05:53:42 +00:00
PM-14927 string to null resolution
This commit is contained in:
@@ -69,7 +69,7 @@ export class AllApplicationsComponent implements OnInit, OnDestroy {
|
||||
.pipe(
|
||||
takeUntilDestroyed(this.destroyRef),
|
||||
map(async (params) => {
|
||||
const organizationId = params.get("organizationId");
|
||||
const organizationId = params.get("organizationId") ?? "";
|
||||
this.organization = (await firstValueFrom(
|
||||
this.organizationService.get$(organizationId),
|
||||
)) as Organization;
|
||||
|
||||
Reference in New Issue
Block a user