diff --git a/src/app/accounts/accept-organization.component.ts b/src/app/accounts/accept-organization.component.ts index 30e28cca8d..26da9c9250 100644 --- a/src/app/accounts/accept-organization.component.ts +++ b/src/app/accounts/accept-organization.component.ts @@ -68,6 +68,10 @@ export class AcceptOrganizationComponent implements OnInit { await this.stateService.save('orgInvitation', qParams); this.email = qParams.email; this.orgName = qParams.organizationName; + if (this.orgName != null) { + // Fix URL encoding of space issue with Angular + this.orgName.replace(/\+/g, ' '); + } } }