View Data->Filtered Rows dialog should be displayed. Fixes #3527

This commit is contained in:
Akshay Joshi 2018-08-02 18:15:58 +05:30
parent c4267f0878
commit 8f45e6fe68
2 changed files with 10 additions and 9 deletions

View File

@ -33,4 +33,5 @@ Bug fixes
| `Bug #3448 <https://redmine.postgresql.org/issues/3448>`_ - Exclude system columns in Import/Export. | `Bug #3448 <https://redmine.postgresql.org/issues/3448>`_ - Exclude system columns in Import/Export.
| `Bug #3457 <https://redmine.postgresql.org/issues/3457>`_ - Fix debugging of procedures in EPAS packages. | `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 #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 #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.

View File

@ -281,7 +281,7 @@ define('pgadmin.datagrid', [
alertify.pgDialogBuild.apply(this); alertify.pgDialogBuild.apply(this);
}, },
prepare:function() { prepare:function() {
var self = this, var that = this,
$content = $(this.message), $content = $(this.message),
$sql_filter = $content.find('#sql_filter'); $sql_filter = $content.find('#sql_filter');
@ -296,17 +296,17 @@ define('pgadmin.datagrid', [
lineNumbers: true, lineNumbers: true,
mode: 'text/x-pgsql', mode: 'text/x-pgsql',
extraKeys: pgBrowser.editor_shortcut_keys, extraKeys: pgBrowser.editor_shortcut_keys,
indentWithTabs: !this.preferences.use_spaces, indentWithTabs: !self.preferences.use_spaces,
indentUnit: this.preferences.tab_size, indentUnit: self.preferences.tab_size,
tabSize: this.preferences.tab_size, tabSize: self.preferences.tab_size,
lineWrapping: this.preferences.wrap_code, lineWrapping: self.preferences.wrap_code,
autoCloseBrackets: this.preferences.insert_pair_brackets, autoCloseBrackets: self.preferences.insert_pair_brackets,
matchBrackets: this.preferences.brace_matching, matchBrackets: self.preferences.brace_matching,
}); });
setTimeout(function() { setTimeout(function() {
// Set focus on editor // Set focus on editor
self.filter_obj.focus(); that.filter_obj.focus();
}, 500); }, 500);
}, },