Making the Postgres Parameters Page Visible (#14156)

* Having parameters page be visible and fixing information bubbles

* Added sessions to edit commands

* Fix table style
This commit is contained in:
nasc17
2021-02-04 09:52:39 -08:00
committed by GitHub
parent 6907c8edab
commit 814dfba338
2 changed files with 21 additions and 18 deletions

View File

@@ -14,6 +14,7 @@ import { Dashboard } from '../../components/dashboard';
import { PostgresDiagnoseAndSolveProblemsPage } from './postgresDiagnoseAndSolveProblemsPage';
import { PostgresSupportRequestPage } from './postgresSupportRequestPage';
import { PostgresComputeAndStoragePage } from './postgresComputeAndStoragePage';
import { PostgresParametersPage } from './postgresParametersPage';
export class PostgresDashboard extends Dashboard {
constructor(private _context: vscode.ExtensionContext, private _controllerModel: ControllerModel, private _postgresModel: PostgresModel) {
@@ -34,8 +35,7 @@ export class PostgresDashboard extends Dashboard {
const computeAndStoragePage = new PostgresComputeAndStoragePage(modelView, this._postgresModel);
// TODO: Removed properties page while investigating bug where refreshed values don't appear in UI
// const propertiesPage = new PostgresPropertiesPage(modelView, this._controllerModel, this._postgresModel);
// TODO: Removed parameters page while investigating bug where UI freezes dealing with large declarative table of components
// const parametersPage = new PostgresParametersPage(modelView, this._postgresModel);
const parametersPage = new PostgresParametersPage(modelView, this._postgresModel);
const diagnoseAndSolveProblemsPage = new PostgresDiagnoseAndSolveProblemsPage(modelView, this._context, this._postgresModel);
const supportRequestPage = new PostgresSupportRequestPage(modelView, this._controllerModel, this._postgresModel);
@@ -45,7 +45,8 @@ export class PostgresDashboard extends Dashboard {
title: loc.settings,
tabs: [
connectionStringsPage.tab,
computeAndStoragePage.tab
computeAndStoragePage.tab,
parametersPage.tab
]
},
{