mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 17:23:05 -05:00
SQL-Migration: improve SQL DB table selection ux to include missing tables (#22659)
* add missing target tables ux * fix number formatting
This commit is contained in:
@@ -401,7 +401,11 @@ export class CreateSqlMigrationServiceDialog {
|
||||
constants.RESOURCE_GROUP_NOT_FOUND);
|
||||
|
||||
const selectedResourceGroupValue = this.migrationServiceResourceGroupDropdown.values.find(v => v.name.toLowerCase() === this._resourceGroupPreset.toLowerCase());
|
||||
this.migrationServiceResourceGroupDropdown.value = (selectedResourceGroupValue) ? selectedResourceGroupValue : this.migrationServiceResourceGroupDropdown.values[0];
|
||||
this.migrationServiceResourceGroupDropdown.value = (selectedResourceGroupValue)
|
||||
? selectedResourceGroupValue
|
||||
: this.migrationServiceResourceGroupDropdown.values?.length > 0
|
||||
? this.migrationServiceResourceGroupDropdown.values[0]
|
||||
: '';
|
||||
} finally {
|
||||
this.migrationServiceResourceGroupDropdown.loading = false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user