mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -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> {
|
protected async createDeployDatabaseDropdown(): Promise<azdata.FormComponent> {
|
||||||
const targetDatabaseTitle = loc.databaseName;
|
const targetDatabaseTitle = loc.databaseName;
|
||||||
this.databaseDropdown = this.view.modelBuilder.dropDown().withProps({
|
this.databaseDropdown = this.view.modelBuilder.dropDown().withProps({
|
||||||
ariaLabel: targetDatabaseTitle
|
ariaLabel: targetDatabaseTitle,
|
||||||
|
required: true
|
||||||
}).component();
|
}).component();
|
||||||
|
|
||||||
//Handle database changes
|
//Handle database changes
|
||||||
|
|||||||
Reference in New Issue
Block a user