We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If a tenant display name has "&" it will not display in the drop-down list of tenants, you have access to.
This has been resolved by editing the MSALAuthentication.psm1 file by adding the following:
if ($tenant.DisplayName -like "&"){ $tenant.DisplayName = $tenant.DisplayName.replace('&',"and") }
The text was updated successfully, but these errors were encountered:
Hello,
Thank you for this! I'll include this in the next release. I found another place with the same issue.
Cheers!
Sorry, something went wrong.
Closing this since fix is released. Please reopen if it is still an issue.
No branches or pull requests
If a tenant display name has "&" it will not display in the drop-down list of tenants, you have access to.
This has been resolved by editing the MSALAuthentication.psm1 file by adding the following:
if ($tenant.DisplayName -like "&"){
$tenant.DisplayName = $tenant.DisplayName.replace('&',"and")
}
The text was updated successfully, but these errors were encountered: