Fixed an issue where the Columns node was not visible under Catalog Objects. #8834

pull/8835/head
Akshay Joshi 2025-06-06 12:34:20 +05:30
parent e4e2761fe3
commit 4cd331f0ca
2 changed files with 4 additions and 2 deletions

View File

@ -37,3 +37,4 @@ Bug fixes
| `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.
| `Issue #8808 <https://github.com/pgadmin-org/pgadmin4/issues/8808>`_ - Fixed an issue where data export using a query opened the wrong dialog type.
| `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.
| `Issue #8834 <https://github.com/pgadmin-org/pgadmin4/issues/8834>`_ - Fixed an issue where the Columns node was not visible under Catalog Objects.

View File

@ -85,10 +85,11 @@ class CatalogObjectModule(SchemaChildModule):
Override the default register function to automagically register
sub-modules at once.
"""
super().register(app, options)
from .columns import blueprint as module
app.register_blueprint(module)
self.submodules.append(module)
super().register(app, options)
blueprint = CatalogObjectModule(__name__)