Added comments column for the functions collection node. Fixes #7152

This commit is contained in:
Akshay Joshi 2022-02-16 12:22:52 +05:30
parent 677221cd9c
commit 5a8c916bc0
2 changed files with 5 additions and 2 deletions

View File

@ -21,4 +21,5 @@ Bug fixes
*********
| `Issue #7124 <https://redmine.postgresql.org/issues/7124>`_ - Fixed the schema diff issue where tables have different column positions and a column has a default value.
| `Issue #7152 <https://redmine.postgresql.org/issues/7152>`_ - Added comments column for the functions collection node.
| `Issue #7173 <https://redmine.postgresql.org/issues/7173>`_ - Fixed an issue where the User Management dialog is not opening.

View File

@ -139,8 +139,10 @@ define('pgadmin.node.function', [
id: 'pronamespace', label: gettext('Schema'), cell: 'string',
control: 'node-list-by-id', type: 'text', cache_level: 'database',
node: 'schema', disabled: 'isDisabled', mode: ['create', 'edit'],
},
],
},{
id: 'description', label: gettext('Comment'), cell: 'string',
type: 'multiline', disabled: 'isDisabled',
}],
}),
});