fix dacpac dropdowns selecting first db in dropdown instead of right clicked db (#14285)

This commit is contained in:
Kim Santiago
2021-02-16 10:23:22 -08:00
committed by GitHub
parent f4cf506290
commit 0c1b16d4fb
3 changed files with 22 additions and 7 deletions

View File

@@ -141,8 +141,13 @@ export class DeployConfigPage extends DacFxConfigPage {
}).component();
//Handle database changes
this.databaseDropdown.onValueChanged(async () => {
this.model.database = (<azdata.CategoryValue>this.databaseDropdown.value).name;
this.databaseDropdown.onValueChanged(() => {
const databaseDropdownValue = this.databaseDropdown.value as azdata.CategoryValue;
if (!databaseDropdownValue) {
return;
}
this.model.database = databaseDropdownValue.name;
});
this.databaseLoader = this.view.modelBuilder.loadingComponent().withItem(this.databaseDropdown).withProperties({