diff --git a/docs/en_US/release_notes_4_4.rst b/docs/en_US/release_notes_4_4.rst index fa53f821d..386f2d91a 100644 --- a/docs/en_US/release_notes_4_4.rst +++ b/docs/en_US/release_notes_4_4.rst @@ -18,6 +18,7 @@ Bug fixes ********* | `Bug #3995 `_ - Avoid 'bogus varno' message from Postgres when viewing the SQL for a table with triggers. +| `Bug #4053 `_ - Enable the online help button on the index dialogue. | `Bug #4054 `_ - Handle resultsets with zero columns correctly in the Query Tool. | `Bug #4060 `_ - Fix the latexpdf doc build. | `Bug #4071 `_ - Ensure that Firefox prompts for a filename/location when downloading query results as a CSV file. diff --git a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/indexes/static/js/index.js b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/indexes/static/js/index.js index bb36ff276..fd48d1fcd 100644 --- a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/indexes/static/js/index.js +++ b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/indexes/static/js/index.js @@ -24,9 +24,6 @@ define('pgadmin.node.index', [ node: 'index', label: gettext('Indexes'), type: 'coll-index', - sqlAlterHelp: 'sql-alterindex.html', - sqlCreateHelp: 'sql-createindex.html', - dialogHelp: url_for('help.static', {'filename': 'index_dialog.html'}), columns: ['name', 'description'], hasStatistics: true, statsPrettifyFields: [gettext('Size'), gettext('Index size')], @@ -227,6 +224,7 @@ define('pgadmin.node.index', [ collection_type: ['coll-table', 'coll-view'], sqlAlterHelp: 'sql-alterindex.html', sqlCreateHelp: 'sql-createindex.html', + dialogHelp: url_for('help.static', {'filename': 'index_dialog.html'}), type: 'index', label: gettext('Index'), hasSQL: true,