mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 01:25:36 -05:00
set initial target db name (#17801)
This commit is contained in:
@@ -216,10 +216,10 @@ export class SqlMigrationServiceDetailsDialog {
|
||||
}
|
||||
|
||||
private async _updateTableCell(table: azdata.DeclarativeTableComponent, row: number, col: number, value: string, keyName: string): Promise<void> {
|
||||
const dataValues = table.dataValues;
|
||||
const dataValues = table.dataValues!;
|
||||
dataValues![row][col].value = value;
|
||||
table.dataValues = [];
|
||||
table.dataValues = dataValues;
|
||||
await table.setDataValues([]);
|
||||
await table.setDataValues(dataValues);
|
||||
await vscode.window.showInformationMessage(constants.AUTH_KEY_REFRESHED(keyName));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user