Add directions to use AAD login if account blocked from connection (#1683)

string login.
This commit is contained in:
jawelton74 2023-11-01 15:46:54 -07:00 committed by GitHub
parent 1726e4df51
commit 15d111e3db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -69,7 +69,9 @@ export const ConnectExplorer: React.FunctionComponent<Props> = ({
setErrorMessage(""); setErrorMessage("");
if (await isAccountRestrictedForConnectionStringLogin(connectionString)) { if (await isAccountRestrictedForConnectionStringLogin(connectionString)) {
setErrorMessage("This account has been blocked from connection-string login."); setErrorMessage(
"This account has been blocked from connection-string login. Please go to cosmos.azure.com/aad for AAD based login.",
);
return; return;
} }

View File

@ -66,7 +66,7 @@
} }
.connectExplorerContainer .connectExplorer .connectExplorerContent .errorDetailsInfoTooltip .errorDetails { .connectExplorerContainer .connectExplorer .connectExplorerContent .errorDetailsInfoTooltip .errorDetails {
bottom: 24px; bottom: 24px;
width: 145px; width: 165px;
visibility: hidden; visibility: hidden;
background-color: #393939; background-color: #393939;
color: #ffffff; color: #ffffff;