mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Only support 'user with login' in dialog (#22175)
This commit is contained in:
@@ -112,7 +112,9 @@ export class UserDialog extends ObjectManagementDialogBase<ObjectManagement.User
|
|||||||
|
|
||||||
this.typeDropdown = this.modelView.modelBuilder.dropDown().withProps({
|
this.typeDropdown = this.modelView.modelBuilder.dropDown().withProps({
|
||||||
ariaLabel: localizedConstants.UserTypeText,
|
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),
|
value: getUserTypeDisplayName(this.objectInfo.type),
|
||||||
width: DefaultInputWidth,
|
width: DefaultInputWidth,
|
||||||
enabled: this.isNewObject
|
enabled: this.isNewObject
|
||||||
|
|||||||
Reference in New Issue
Block a user