Only support 'user with login' in dialog (#22175)

This commit is contained in:
Karl Burtram
2023-03-06 14:32:30 -08:00
committed by GitHub
parent bf753309e7
commit 8a71302aea

View File

@@ -112,7 +112,9 @@ export class UserDialog extends ObjectManagementDialogBase<ObjectManagement.User
this.typeDropdown = this.modelView.modelBuilder.dropDown().withProps({
ariaLabel: localizedConstants.UserTypeText,
values: [localizedConstants.UserWithLoginText, localizedConstants.UserWithWindowsGroupLoginText, localizedConstants.ContainedUserText, localizedConstants.UserWithNoConnectAccess],
// only supporting user with login for initial preview
//values: [localizedConstants.UserWithLoginText, localizedConstants.UserWithWindowsGroupLoginText, localizedConstants.ContainedUserText, localizedConstants.UserWithNoConnectAccess],
values: [localizedConstants.UserWithLoginText],
value: getUserTypeDisplayName(this.objectInfo.type),
width: DefaultInputWidth,
enabled: this.isNewObject