mirror of
https://github.com/bitwarden/web
synced 2025-12-15 15:53:18 +00:00
fix url encoding issue with spaces
This commit is contained in:
@@ -68,6 +68,10 @@ export class AcceptOrganizationComponent implements OnInit {
|
|||||||
await this.stateService.save('orgInvitation', qParams);
|
await this.stateService.save('orgInvitation', qParams);
|
||||||
this.email = qParams.email;
|
this.email = qParams.email;
|
||||||
this.orgName = qParams.organizationName;
|
this.orgName = qParams.organizationName;
|
||||||
|
if (this.orgName != null) {
|
||||||
|
// Fix URL encoding of space issue with Angular
|
||||||
|
this.orgName.replace(/\+/g, ' ');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user