1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-03 00:20:35 +02:00
This commit is contained in:
Kyle Spearrin 2018-07-25 09:13:46 -04:00
parent 695dc98010
commit 6ee2f05fb7

View File

@ -70,7 +70,7 @@ export class AcceptOrganizationComponent implements OnInit {
this.orgName = qParams.organizationName;
if (this.orgName != null) {
// Fix URL encoding of space issue with Angular
this.orgName.replace(/\+/g, ' ');
this.orgName = this.orgName.replace(/\+/g, ' ');
}
}
}