mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue with the non-visibility of columns added prior to import/export data. Fixes #7649
This commit is contained in:
committed by
Akshay Joshi
parent
0f46f070ed
commit
ad59380676
@@ -1079,6 +1079,12 @@ define('pgadmin.browser.node', [
|
||||
}
|
||||
},
|
||||
added: function(item, data) {
|
||||
if (pgBrowser.tree.getData(item)._type.indexOf('coll-') !== -1){
|
||||
setTimeout(function() {
|
||||
let _item = pgAdmin.Browser.Nodes[pgBrowser.tree.getData(item).nodes[0]];
|
||||
_item.clear_cache.apply(_item);
|
||||
}, 0);
|
||||
}
|
||||
pgBrowser.Events.trigger('pgadmin:browser:tree:expand-from-previous-tree-state',
|
||||
item);
|
||||
pgBrowser.Node.callbacks.change_server_background(item, data);
|
||||
|
||||
Reference in New Issue
Block a user