Skip to content

Commit

Permalink
Merge e417eaf into 8667d80
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditya Bist committed Jan 16, 2020
2 parents 8667d80 + e417eaf commit 18322f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/objectExplorer/objectExplorerService.ts
Expand Up @@ -135,7 +135,8 @@ export class ObjectExplorerService {
const credentials = self._sessionIdToConnectionCredentialsMap.get(result.sessionId);
const children = result.nodes.map(node => TreeNodeInfo.fromNodeInfo(node, result.sessionId,
self._currentNode, credentials));
self._treeNodeToChildrenMap.set(self._currentNode, children);
let parentNode = self._rootTreeNodeArray.find(n => n.nodePath === result.nodePath);
self._treeNodeToChildrenMap.set(parentNode, children);
const expandParams: ExpandParams = {
sessionId: result.sessionId,
nodePath: result.nodePath
Expand Down

0 comments on commit 18322f6

Please sign in to comment.