Removed (Beta) keyword from Schema Diff and High Contrast theme.

This commit is contained in:
Akshay Joshi
2020-09-29 18:27:28 +05:30
parent 1c70a43b91
commit a707d818f5
3 changed files with 3 additions and 7 deletions

View File

@@ -37,7 +37,7 @@ define('pgadmin.schemadiff', [
applies: ['tools'],
callback: 'show_schema_diff_tool',
priority: 1,
label: gettext('Schema Diff (Beta)'),
label: gettext('Schema Diff'),
enable: true,
}];
@@ -85,7 +85,7 @@ define('pgadmin.schemadiff', [
})
.done(function(res) {
self.trans_id = res.data.schemaDiffTransId;
res.data.panel_title = gettext('Schema Diff (Beta)'); //TODO: Set the panel title
res.data.panel_title = gettext('Schema Diff'); //TODO: Set the panel title
// TODO: Following function is used to test the fetching of the
// databases this should be moved to server selection event later.
self.launch_schema_diff(res.data);