mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Added comment column in the properties panel for View and Materialized View collection node. Fixes #6416
This commit is contained in:
parent
9dd1bae3c7
commit
e718be72e3
docs/en_US
web/pgadmin/browser/server_groups/servers/databases/schemas/views/static/js
@ -23,3 +23,4 @@ Bug fixes
|
||||
| `Issue #6377 <https://redmine.postgresql.org/issues/6377>`_ - Fixed an issue where schema diff does not create DROP DEFAULT statement for columns.
|
||||
| `Issue #6385 <https://redmine.postgresql.org/issues/6385>`_ - Ensure that Backup and Restore should work on shared servers.
|
||||
| `Issue #6408 <https://redmine.postgresql.org/issues/6408>`_ - Fixed ModuleNotFoundError when running setup.py from outside of the root.
|
||||
| `Issue #6416 <https://redmine.postgresql.org/issues/6416>`_ - Added comment column in the properties panel for View and Materialized View collection node.
|
||||
|
@ -30,7 +30,7 @@ define('pgadmin.node.mview', [
|
||||
node: 'mview',
|
||||
label: gettext('Materialized Views'),
|
||||
type: 'coll-mview',
|
||||
columns: ['name', 'owner'],
|
||||
columns: ['name', 'owner', 'comment'],
|
||||
canDrop: schemaChildTreeNode.isTreeItemOfChildOfSchema,
|
||||
canDropCascade: schemaChildTreeNode.isTreeItemOfChildOfSchema,
|
||||
});
|
||||
|
@ -30,7 +30,7 @@ define('pgadmin.node.view', [
|
||||
node: 'view',
|
||||
label: gettext('Views'),
|
||||
type: 'coll-view',
|
||||
columns: ['name', 'owner'],
|
||||
columns: ['name', 'owner', 'comment'],
|
||||
canDrop: schemaChildTreeNode.isTreeItemOfChildOfSchema,
|
||||
canDropCascade: schemaChildTreeNode.isTreeItemOfChildOfSchema,
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user