diff --git a/extensions/arc/src/ui/dashboards/postgres/postgresComputeAndStoragePage.ts b/extensions/arc/src/ui/dashboards/postgres/postgresComputeAndStoragePage.ts index c6856d169c..33077c4ad0 100644 --- a/extensions/arc/src/ui/dashboards/postgres/postgresComputeAndStoragePage.ts +++ b/extensions/arc/src/ui/dashboards/postgres/postgresComputeAndStoragePage.ts @@ -480,22 +480,13 @@ export class PostgresComputeAndStoragePage extends DashboardPage { const keyComponent = this.modelView.modelBuilder.text().withProps({ value: loc.workerNodeCount, requiredIndicator: true, + description: loc.workerNodesInformation, CSSStyles: { ...cssStyles.text, 'margin-block-start': '0px', 'margin-block-end': '0px' } }).component(); const keyContainer = this.modelView.modelBuilder.flexContainer().withLayout({ alignItems: 'center' }).component(); keyContainer.addItem(keyComponent, { CSSStyles: { 'margin-right': '0px', 'margin-bottom': '15px' } }); - const information = this.modelView.modelBuilder.button().withProps({ - iconPath: IconPathHelper.information, - title: loc.workerNodesInformation, - ariaLabel: loc.workerNodesInformation, - width: '15px', - height: '15px', - enabled: false - }).component(); - - keyContainer.addItem(information, { CSSStyles: { 'margin-left': '5px', 'margin-bottom': '15px' } }); flexContainer.addItem(keyContainer, keyFlex); const inputContainer = this.modelView.modelBuilder.flexContainer().withLayout({ alignItems: 'center' }).component(); @@ -578,22 +569,13 @@ export class PostgresComputeAndStoragePage extends DashboardPage { const titleComponent = this.modelView.modelBuilder.text().withProps({ value: title, + description: description, CSSStyles: { ...cssStyles.title, 'font-weight': 'bold', 'margin-block-start': '0px', 'margin-block-end': '0px' } }).component(); const titleContainer = this.modelView.modelBuilder.flexContainer().withLayout({ alignItems: 'center' }).component(); titleContainer.addItem(titleComponent, { CSSStyles: { 'margin-right': '0px', 'margin-bottom': '15px' } }); - const information = this.modelView.modelBuilder.button().withProps({ - iconPath: IconPathHelper.information, - title: description, - ariaLabel: description, - width: '15px', - height: '15px', - enabled: false - }).component(); - - titleContainer.addItem(information, { CSSStyles: { 'margin-left': '5px', 'margin-bottom': '15px' } }); flexContainer.addItem(titleContainer, titleFlex); let configurationSection = this.modelView.modelBuilder.divContainer().component(); diff --git a/extensions/arc/src/ui/dashboards/postgres/postgresParameters.ts b/extensions/arc/src/ui/dashboards/postgres/postgresParameters.ts index ea4216bd08..3df4aa4807 100644 --- a/extensions/arc/src/ui/dashboards/postgres/postgresParameters.ts +++ b/extensions/arc/src/ui/dashboards/postgres/postgresParameters.ts @@ -551,8 +551,7 @@ export abstract class PostgresParametersPage extends DashboardPage { iconPath: IconPathHelper.information, width: '15px', height: '15px', - enabled: false, - title: loc.rangeSetting(engineSetting.min!, engineSetting.max!) + description: loc.rangeSetting(engineSetting.min!, engineSetting.max!) }).component(); return {