Fixed an issue where the Columns node was not visible under Catalog Objects. #8834
parent
e4e2761fe3
commit
4cd331f0ca
|
|
@ -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.
|
||||
|
|
@ -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__)
|
||||
|
|
|
|||
Loading…
Reference in New Issue