[SQL Migration] Miscellaneous UI improvements from feedback (#22592)

* Hide more info for assessment issues without help links

* Add info box about blob container folders

* WIP - reuse create DMS dialog for IR registration

* Revert "Add info box about blob container folders"

This reverts commit 30b8892ea7918841a6466b59058181062d367ba5.

* Add help link to target platform selection page explaining Azure SQL offerings

* Revert "WIP - reuse create DMS dialog for IR registration"

This reverts commit 5fac6b5c7148b2520cc42ce9fad549cde28baba2.

* Don't show storage account warning banner for DB scenario

* Vbump extension and migration service

* Test - fix http request format from chsuh/fixFormat

* Add instructions for table mapping and schema migration

* Revert "Test - fix http request format from chsuh/fixFormat"

This reverts commit 4992603532e98dff3b7ba6f04ba9304d173fc5ad.
This commit is contained in:
Raymond Truong
2023-04-10 10:20:39 -07:00
committed by GitHub
parent a60d6107b4
commit b6f1b949d7
6 changed files with 89 additions and 23 deletions

View File

@@ -246,6 +246,14 @@ export class SKURecommendationPage extends MigrationWizardPage {
}
}).component();
const learnMoreLink = this._view.modelBuilder.hyperlink()
.withProps({
label: constants.SKU_RECOMMENDATION_CHOOSE_A_TARGET_HELP,
ariaLabel: constants.SKU_RECOMMENDATION_CHOOSE_A_TARGET_HELP,
url: 'https://learn.microsoft.com/azure/azure-sql/azure-sql-iaas-vs-paas-what-is-overview',
showLinkIcon: true,
}).component();
this._rbg = this._view!.modelBuilder.radioCardGroup().withProps({
cards: [],
iconHeight: '35px',
@@ -354,7 +362,7 @@ export class SKURecommendationPage extends MigrationWizardPage {
.component();
const component = this._view.modelBuilder.divContainer()
.withItems([chooseYourTargetText, this._rbgLoader])
.withItems([chooseYourTargetText, learnMoreLink, this._rbgLoader])
.component();
return component;
}