mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2026-07-29 15:53:54 -05:00
Fixed an issue where connections keep open to (closed) connections on the initial connection to the database server. Fixes #7035
This commit is contained in:
committed by
Akshay Joshi
parent
dabe64a8df
commit
d945c6f843
@@ -18,5 +18,6 @@ Bug fixes
|
|||||||
*********
|
*********
|
||||||
|
|
||||||
| `Issue #6916 <https://redmine.postgresql.org/issues/6916>`_ - Added flag in runtime to disable GPU hardware acceleration.
|
| `Issue #6916 <https://redmine.postgresql.org/issues/6916>`_ - Added flag in runtime to disable GPU hardware acceleration.
|
||||||
|
| `Issue #7035 <https://redmine.postgresql.org/issues/7035>`_ - Fixed an issue where connections keep open to (closed) connections on the initial connection to the database server.
|
||||||
| `Issue #7085 <https://redmine.postgresql.org/issues/7085>`_ - Ensure that Partitioned tables should be visible correctly when creating multiple partition levels.
|
| `Issue #7085 <https://redmine.postgresql.org/issues/7085>`_ - Ensure that Partitioned tables should be visible correctly when creating multiple partition levels.
|
||||||
| `Issue #7100 <https://redmine.postgresql.org/issues/7100>`_ - Fixed an issue where the Browser tree gets disappears when scrolling sequences.
|
| `Issue #7100 <https://redmine.postgresql.org/issues/7100>`_ - Fixed an issue where the Browser tree gets disappears when scrolling sequences.
|
||||||
|
|||||||
@@ -239,6 +239,7 @@ define('pgadmin.node.database', [
|
|||||||
data.icon = 'icon-database-not-connected';
|
data.icon = 'icon-database-not-connected';
|
||||||
t.addIcon(i, {icon: data.icon});
|
t.addIcon(i, {icon: data.icon});
|
||||||
t.unload(i);
|
t.unload(i);
|
||||||
|
pgBrowser.Events.trigger('pgadmin:browser:tree:update-tree-state', i);
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
t.select(prv_i);
|
t.select(prv_i);
|
||||||
}, 10);
|
}, 10);
|
||||||
|
|||||||
@@ -260,7 +260,7 @@ _.extend(pgBrowser.browserTreeState, {
|
|||||||
},
|
},
|
||||||
expand_from_previous_state: function(item) {
|
expand_from_previous_state: function(item) {
|
||||||
let self = this,
|
let self = this,
|
||||||
treeData = self.stored_state || {},
|
treeData = this.current_state || {},
|
||||||
data = item && pgBrowser.tree.itemData(item),
|
data = item && pgBrowser.tree.itemData(item),
|
||||||
treeHierarchy = pgBrowser.tree.getTreeNodeHierarchy(item);
|
treeHierarchy = pgBrowser.tree.getTreeNodeHierarchy(item);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user