Browse Source

Fixes parenting

main
Eric Amodio 5 years ago
parent
commit
3462275b4c
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/views/nodes/branchOrTagFolderNode.ts

+ 3
- 3
src/views/nodes/branchOrTagFolderNode.ts View File

@ -51,7 +51,7 @@ export class BranchOrTagFolderNode extends ViewNode {
children.push( children.push(
new BranchOrTagFolderNode( new BranchOrTagFolderNode(
this.view, this.view,
this.parent!,
this.folderName ? this : this.parent!,
this.type, this.type,
this.repoPath, this.repoPath,
folder.name, folder.name,
@ -64,8 +64,8 @@ export class BranchOrTagFolderNode extends ViewNode {
continue; continue;
} }
// Make sure to set ourselves as the parent
(folder.value as any).parent = this;
// Make sure to set the parent
(folder.value as any).parent = this.folderName ? this : this.parent!;
children.push(folder.value); children.push(folder.value);
} }

Loading…
Cancel
Save