From e1fa1b039627919a05e0c79d54b54f539a588d0e Mon Sep 17 00:00:00 2001 From: Aditya Toshniwal Date: Thu, 11 Aug 2022 10:53:07 +0530 Subject: [PATCH] =?UTF-8?q?Ensure=20that=20the=20children=20of=C2=A0inform?= =?UTF-8?q?ation=5Fschema=20and=20pg=5Fcatalog=20node=20should=20be=20disp?= =?UTF-8?q?layed.=20Fixes=20#7587?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en_US/release_notes_6_13.rst | 1 + .../browser/server_groups/servers/databases/schemas/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/en_US/release_notes_6_13.rst b/docs/en_US/release_notes_6_13.rst index caaaa350b..41d96bdb9 100644 --- a/docs/en_US/release_notes_6_13.rst +++ b/docs/en_US/release_notes_6_13.rst @@ -32,3 +32,4 @@ Bug fixes | `Issue #7563 `_ - Fixed an issue where autocomplete is not working after clearing the query editor. | `Issue #7573 `_ - Ensure that autocomplete does not appear when navigating code using arrow keys. | `Issue #7586 `_ - Fixed an issue with rendering geometry when selecting a complete column. + | `Issue #7587 `_ - Ensure that the children of information_schema and pg_catalog node should be displayed. diff --git a/web/pgadmin/browser/server_groups/servers/databases/schemas/__init__.py b/web/pgadmin/browser/server_groups/servers/databases/schemas/__init__.py index 594caf295..09a82b398 100644 --- a/web/pgadmin/browser/server_groups/servers/databases/schemas/__init__.py +++ b/web/pgadmin/browser/server_groups/servers/databases/schemas/__init__.py @@ -186,7 +186,7 @@ class CatalogModule(SchemaModule): Override the default register function to automagically register sub-modules at once. """ - super(SchemaModule, self).register(app, options) + super(CatalogModule, self).register(app, options) schema_blueprint = SchemaModule(__name__)