View extensions of Postgres server group (#15887)

* Init

* Fix view

* Change strings

* Change strings edit/view

* Only view extensions

* Added loading text

* Add table label, remove try catch block, prfixes

* String add

* Take out podstatus model, add correct link
This commit is contained in:
nasc17
2021-06-24 09:20:22 -07:00
committed by GitHub
parent e639a94dda
commit 478a2bf64b
5 changed files with 193 additions and 0 deletions

View File

@@ -28,6 +28,7 @@ export class IconPathHelper {
public static collapseUp: IconPath;
public static collapseDown: IconPath;
public static postgres: IconPath;
public static extensions: IconPath;
public static computeStorage: IconPath;
public static connection: IconPath;
public static backup: IconPath;
@@ -74,6 +75,10 @@ export class IconPathHelper {
light: IconPathHelper.context.asAbsolutePath('images/postgres.svg'),
dark: IconPathHelper.context.asAbsolutePath('images/postgres.svg')
};
IconPathHelper.extensions = {
light: IconPathHelper.context.asAbsolutePath('images/extensions.svg'),
dark: IconPathHelper.context.asAbsolutePath('images/extensions.svg')
};
IconPathHelper.computeStorage = {
light: context.asAbsolutePath('images/billing.svg'),
dark: context.asAbsolutePath('images/billing.svg')