mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-23 01:25:38 -05:00
Fixing migration private preview bugs WIP 3 (#14928)
* Adding server name to wizard and dialog title Surfacing async errors Fixing a bunch of strings to match the mockup * Adding auto refresh for migration status * Removing errors for sql vm migration * using new logic to get sql server username * Fixing help links * Removing unncessary await
This commit is contained in:
@@ -216,10 +216,21 @@ export class SqlDatabaseTree {
|
||||
}).component();
|
||||
|
||||
this._instanceTable.onRowSelected((e) => {
|
||||
|
||||
this._instanceTable.focus();
|
||||
this._activeIssues = this._model._assessmentResults?.issues;
|
||||
this._selectedIssue = this._model._assessmentResults?.issues[0];
|
||||
this._dbName.value = this._serverName;
|
||||
this.refreshResults();
|
||||
this._resultComponent.updateCssStyles({
|
||||
'display': 'block'
|
||||
});
|
||||
this._dbMessageContainer.updateCssStyles({
|
||||
'display': 'none'
|
||||
});
|
||||
|
||||
if (this._model._targetType === MigrationTargetType.SQLMI) {
|
||||
this.refreshResults();
|
||||
}
|
||||
});
|
||||
|
||||
return instanceContainer;
|
||||
@@ -247,7 +258,6 @@ export class SqlDatabaseTree {
|
||||
return container;
|
||||
}
|
||||
|
||||
|
||||
private createTopContainer(): azdata.FlexContainer {
|
||||
const title = this.createTitleComponent();
|
||||
const impact = this.createPlatformComponent();
|
||||
|
||||
Reference in New Issue
Block a user