diff --git a/web/pgadmin/browser/static/js/browser.js b/web/pgadmin/browser/static/js/browser.js index 0eb7840b0..e9463f2ea 100644 --- a/web/pgadmin/browser/static/js/browser.js +++ b/web/pgadmin/browser/static/js/browser.js @@ -2171,22 +2171,6 @@ define('pgadmin.browser', [ 'Ctrl-Space': 'autocomplete', 'Cmd-Space': 'autocomplete', - // Select All text - 'Ctrl-A': 'selectAll', - 'Cmd-A': 'selectAll', - - // Redo text - 'Ctrl-Y': 'redo', - 'Cmd-Y': 'redo', - - // Undo text - 'Ctrl-Z': 'undo', - 'Cmd-Z': 'undo', - - // Delete Line - 'Ctrl-D': 'deleteLine', - 'Cmd-D': 'deleteLine', - 'Alt-Up': 'goLineUp', 'Alt-Down': 'goLineDown', diff --git a/web/pgadmin/static/scss/_pgadmin.style.scss b/web/pgadmin/static/scss/_pgadmin.style.scss index 2bd4d5a19..52f96170b 100644 --- a/web/pgadmin/static/scss/_pgadmin.style.scss +++ b/web/pgadmin/static/scss/_pgadmin.style.scss @@ -287,6 +287,7 @@ margin-top: 25px !important; position: relative; text-align: center; + font-size: $font-size-base; &:before { font-family: $font-family-icon; diff --git a/web/pgadmin/tools/sqleditor/static/js/sqleditor.js b/web/pgadmin/tools/sqleditor/static/js/sqleditor.js index ddd9ad701..b4ee29e50 100644 --- a/web/pgadmin/tools/sqleditor/static/js/sqleditor.js +++ b/web/pgadmin/tools/sqleditor/static/js/sqleditor.js @@ -76,6 +76,14 @@ define('tools.querytool', [ var is_query_running = false; + const EMPTY_DATA_OUTPUT_CONTENT = '
'; + + const EMPTY_EXPLAIN_CONTENT = ''; + // Defining Backbone view for the sql grid. var SQLEditorView = Backbone.View.extend({ initialize: function(opts) { @@ -251,7 +259,7 @@ define('tools.querytool', [ isCloseable: false, isPrivate: true, extraClasses: 'hide-vertical-scrollbar', - content: '', + content: `