mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-03 09:35:40 -05:00
fix dacpac dropdowns selecting first db in dropdown instead of right clicked db (#14285)
This commit is contained in:
@@ -40,8 +40,13 @@ export abstract class DacFxConfigPage extends BasePage {
|
||||
|
||||
// Handle server changes
|
||||
this.serverDropdown.onValueChanged(async () => {
|
||||
this.model.server = (this.serverDropdown.value as ConnectionDropdownValue).connection;
|
||||
this.model.serverName = (this.serverDropdown.value as ConnectionDropdownValue).displayName;
|
||||
const serverDropdownValue = this.serverDropdown.value as ConnectionDropdownValue;
|
||||
if (!serverDropdownValue) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.model.server = serverDropdownValue.connection;
|
||||
this.model.serverName = serverDropdownValue.displayName;
|
||||
if (this.databaseDropdown) {
|
||||
await this.populateDatabaseDropdown();
|
||||
} else {
|
||||
@@ -98,8 +103,13 @@ export abstract class DacFxConfigPage extends BasePage {
|
||||
}).component();
|
||||
|
||||
// Handle database changes
|
||||
this.databaseDropdown.onValueChanged(async () => {
|
||||
this.model.database = <string>this.databaseDropdown.value;
|
||||
this.databaseDropdown.onValueChanged(() => {
|
||||
const databaseDropdownValue = this.databaseDropdown.value;
|
||||
if (!databaseDropdownValue) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.model.database = databaseDropdownValue as string;
|
||||
this.fileTextBox.value = this.generateFilePathFromDatabaseAndTimestamp();
|
||||
this.model.filePath = this.fileTextBox.value;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user