Skip to content

Commit 4cd331f

Browse files
committed
Fixed an issue where the Columns node was not visible under Catalog Objects. pgadmin-org#8834
1 parent e4e2761 commit 4cd331f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/en_US/release_notes_9_5.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ Bug fixes
3737
| `Issue #8691 <https://github.com/pgadmin-org/pgadmin4/issues/8691>`_ - Fixed an issue in the query tool where using multiple cursors to copy text resulted in only the first line being copied.
3838
| `Issue #8808 <https://github.com/pgadmin-org/pgadmin4/issues/8808>`_ - Fixed an issue where data export using a query opened the wrong dialog type.
3939
| `Issue #8809 <https://github.com/pgadmin-org/pgadmin4/issues/8809>`_ - Fixed an issue where data export using a query failed when the query contained a newline character.
40+
| `Issue #8834 <https://github.com/pgadmin-org/pgadmin4/issues/8834>`_ - Fixed an issue where the Columns node was not visible under Catalog Objects.

web/pgadmin/browser/server_groups/servers/databases/schemas/catalog_objects/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,11 @@ def register(self, app, options):
8585
Override the default register function to automagically register
8686
sub-modules at once.
8787
"""
88-
super().register(app, options)
8988

9089
from .columns import blueprint as module
91-
app.register_blueprint(module)
90+
self.submodules.append(module)
91+
92+
super().register(app, options)
9293

9394

9495
blueprint = CatalogObjectModule(__name__)

0 commit comments

Comments
 (0)