From 5a8c916bc006af9edbea07ce52cccc773385fcfb Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Wed, 16 Feb 2022 12:22:52 +0530 Subject: [PATCH] Added comments column for the functions collection node. Fixes #7152 --- docs/en_US/release_notes_6_6.rst | 1 + .../databases/schemas/functions/static/js/function.js | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/en_US/release_notes_6_6.rst b/docs/en_US/release_notes_6_6.rst index f5bc20a70..d8e2b2811 100644 --- a/docs/en_US/release_notes_6_6.rst +++ b/docs/en_US/release_notes_6_6.rst @@ -21,4 +21,5 @@ Bug fixes ********* | `Issue #7124 `_ - Fixed the schema diff issue where tables have different column positions and a column has a default value. +| `Issue #7152 `_ - Added comments column for the functions collection node. | `Issue #7173 `_ - Fixed an issue where the User Management dialog is not opening. diff --git a/web/pgadmin/browser/server_groups/servers/databases/schemas/functions/static/js/function.js b/web/pgadmin/browser/server_groups/servers/databases/schemas/functions/static/js/function.js index 0830dc365..41171c62a 100644 --- a/web/pgadmin/browser/server_groups/servers/databases/schemas/functions/static/js/function.js +++ b/web/pgadmin/browser/server_groups/servers/databases/schemas/functions/static/js/function.js @@ -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', + }], }), });