mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
View Data->Filtered Rows dialog should be displayed. Fixes #3527
This commit is contained in:
parent
c4267f0878
commit
8f45e6fe68
@ -34,3 +34,4 @@ Bug fixes
|
||||
| `Bug #3457 <https://redmine.postgresql.org/issues/3457>`_ - Fix debugging of procedures in EPAS packages.
|
||||
| `Bug #3468 <https://redmine.postgresql.org/issues/3468>`_ - Support SSH tunneling with keys that don't have a passphrase.
|
||||
| `Bug #3471 <https://redmine.postgresql.org/issues/3471>`_ - Ensure the SSH tunnel port number is honoured.
|
||||
| `Bug #3527 <https://redmine.postgresql.org/issues/3527>`_ - View Data->Filtered Rows dialog should be displayed.
|
@ -281,7 +281,7 @@ define('pgadmin.datagrid', [
|
||||
alertify.pgDialogBuild.apply(this);
|
||||
},
|
||||
prepare:function() {
|
||||
var self = this,
|
||||
var that = this,
|
||||
$content = $(this.message),
|
||||
$sql_filter = $content.find('#sql_filter');
|
||||
|
||||
@ -296,17 +296,17 @@ define('pgadmin.datagrid', [
|
||||
lineNumbers: true,
|
||||
mode: 'text/x-pgsql',
|
||||
extraKeys: pgBrowser.editor_shortcut_keys,
|
||||
indentWithTabs: !this.preferences.use_spaces,
|
||||
indentUnit: this.preferences.tab_size,
|
||||
tabSize: this.preferences.tab_size,
|
||||
lineWrapping: this.preferences.wrap_code,
|
||||
autoCloseBrackets: this.preferences.insert_pair_brackets,
|
||||
matchBrackets: this.preferences.brace_matching,
|
||||
indentWithTabs: !self.preferences.use_spaces,
|
||||
indentUnit: self.preferences.tab_size,
|
||||
tabSize: self.preferences.tab_size,
|
||||
lineWrapping: self.preferences.wrap_code,
|
||||
autoCloseBrackets: self.preferences.insert_pair_brackets,
|
||||
matchBrackets: self.preferences.brace_matching,
|
||||
});
|
||||
|
||||
setTimeout(function() {
|
||||
// Set focus on editor
|
||||
self.filter_obj.focus();
|
||||
that.filter_obj.focus();
|
||||
}, 500);
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user