Adding info tooltips across migration wizard (#16654)

Adding info tooltips across migration wizard
This commit is contained in:
goyal-anjali
2021-08-24 21:49:23 +05:30
committed by GitHub
parent e2f9580163
commit c00fc80f22
4 changed files with 24 additions and 0 deletions

View File

@@ -247,6 +247,7 @@ export class DatabaseBackupPage extends MigrationWizardPage {
const networkLocationInputBoxLabel = this._view.modelBuilder.text().withProps({
value: constants.DATABASE_BACKUP_NETWORK_SHARE_LOCATION_LABEL,
description: constants.DATABASE_BACKUP_NETWORK_SHARE_LOCATION_INFO,
width: WIZARD_INPUT_COMPONENT_WIDTH,
requiredIndicator: true,
CSSStyles: {
@@ -290,6 +291,7 @@ export class DatabaseBackupPage extends MigrationWizardPage {
const windowsUserAccountLabel = this._view.modelBuilder.text()
.withProps({
value: constants.DATABASE_BACKUP_NETWORK_SHARE_WINDOWS_USER_LABEL,
description: constants.DATABASE_BACKUP_NETWORK_SHARE_WINDOWS_USER_INFO,
width: WIZARD_INPUT_COMPONENT_WIDTH,
requiredIndicator: true,
CSSStyles: {

View File

@@ -299,6 +299,7 @@ export class SKURecommendationPage extends MigrationWizardPage {
const managedInstanceSubscriptionDropdownLabel = this._view.modelBuilder.text().withProps({
value: constants.SUBSCRIPTION,
description: constants.SKU_RECOMMENDATION_SUBSCRIPTION_INFO,
width: WIZARD_INPUT_COMPONENT_WIDTH,
requiredIndicator: true,
CSSStyles: {
@@ -325,6 +326,7 @@ export class SKURecommendationPage extends MigrationWizardPage {
const azureLocationLabel = this._view.modelBuilder.text().withProps({
value: constants.LOCATION,
description: constants.SKU_RECOMMENDATION_LOCATION_INFO,
width: WIZARD_INPUT_COMPONENT_WIDTH,
requiredIndicator: true,
CSSStyles: {
@@ -349,6 +351,7 @@ export class SKURecommendationPage extends MigrationWizardPage {
const azureResourceGroupLabel = this._view.modelBuilder.text().withProps({
value: constants.RESOURCE_GROUP,
description: constants.SKU_RECOMMENDATION_RESOURCE_GROUP_INFO,
width: WIZARD_INPUT_COMPONENT_WIDTH,
requiredIndicator: true,
CSSStyles: {
@@ -373,6 +376,7 @@ export class SKURecommendationPage extends MigrationWizardPage {
this._resourceDropdownLabel = this._view.modelBuilder.text().withProps({
value: constants.MANAGED_INSTANCE,
description: constants.SKU_RECOMMENDATION_RESOURCE_INFO,
width: WIZARD_INPUT_COMPONENT_WIDTH,
requiredIndicator: true,
CSSStyles: {