diff --git a/docs/en_US/release_notes_6_4.rst b/docs/en_US/release_notes_6_4.rst index d8e5fbde7..cc21b4f34 100644 --- a/docs/en_US/release_notes_6_4.rst +++ b/docs/en_US/release_notes_6_4.rst @@ -21,6 +21,7 @@ Bug fixes | `Issue #6745 `_ - Fixed an issue where Tablespace is created though an error is shown on the dialog. | `Issue #7003 `_ - Fixed an issue where Explain Analyze shows negative exclusive time. | `Issue #7034 `_ - Fixed an issue where Columns with default value not showing when adding a new row. +| `Issue #7075 `_ - Ensure that help should be visible properly for Procedures. | `Issue #7077 `_ - Fixed an issue where the Owner is not displayed in the reverse engineering SQL for Procedures. | `Issue #7078 `_ - Fixed an issue where an operation error message pop up showing the database object's name incorrectly. | `Issue #7096 `_ - Ensure that Truncate and Reset statistics should work. diff --git a/web/pgadmin/browser/server_groups/servers/databases/schemas/functions/static/js/procedure.js b/web/pgadmin/browser/server_groups/servers/databases/schemas/functions/static/js/procedure.js index cbad29d14..48612a930 100644 --- a/web/pgadmin/browser/server_groups/servers/databases/schemas/functions/static/js/procedure.js +++ b/web/pgadmin/browser/server_groups/servers/databases/schemas/functions/static/js/procedure.js @@ -15,7 +15,7 @@ import _ from 'lodash'; /* Create and Register Procedure Collection and Node. */ define('pgadmin.node.procedure', [ - 'sources/gettext', 'jquery', 'underscore', + 'sources/gettext', 'sources/url_for', 'jquery', 'sources/pgadmin', 'pgadmin.browser', 'alertify', 'pgadmin.node.function', 'pgadmin.node.schema.dir/child', 'pgadmin.node.schema.dir/schema_child_tree_node',