mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-06 01:25:38 -05:00
Fix database name in dacpac wizard not saying required (#21932)
This commit is contained in:
@@ -137,7 +137,8 @@ export class DeployConfigPage extends DacFxConfigPage {
|
||||
protected async createDeployDatabaseDropdown(): Promise<azdata.FormComponent> {
|
||||
const targetDatabaseTitle = loc.databaseName;
|
||||
this.databaseDropdown = this.view.modelBuilder.dropDown().withProps({
|
||||
ariaLabel: targetDatabaseTitle
|
||||
ariaLabel: targetDatabaseTitle,
|
||||
required: true
|
||||
}).component();
|
||||
|
||||
//Handle database changes
|
||||
|
||||
Reference in New Issue
Block a user