Fix database name in dacpac wizard not saying required (#21932)

This commit is contained in:
Kim Santiago
2023-02-14 09:50:52 -08:00
committed by GitHub
parent 5e7446af6c
commit d5384cad0e

View File

@@ -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