Fix menu text (the Query tool option doesn't open a dialogue, so should not have ...).

This commit is contained in:
Dave Page 2021-01-20 15:52:34 +00:00
parent a2f626046a
commit 91ca746c27
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ define([
pgAdmin.Browser.add_menus([{
name: 'show_query_tool', node: this.type, module: this,
applies: ['context'], callback: 'show_query_tool',
priority: 998, label: gettext('Query Tool...'),
priority: 998, label: gettext('Query Tool'),
icon: 'pg-font-icon icon-query-tool',
}]);

View File

@ -196,7 +196,7 @@ define('pgadmin.browser.node', [
applies: ['context'],
callback: 'show_query_tool',
priority: 998,
label: gettext('Query Tool...'),
label: gettext('Query Tool'),
icon: 'pg-font-icon icon-query-tool',
enable: enable,
}]);