Преглед изворни кода

Fixes issue w/ current ordering when nested

main
Eric Amodio пре 5 година
родитељ
комит
7b7b4fabf2
1 измењених фајлова са 3 додато и 1 уклоњено
  1. +3
    -1
      src/views/nodes/branchNode.ts

+ 3
- 1
src/views/nodes/branchNode.ts Прегледај датотеку

@ -58,7 +58,9 @@ export class BranchNode extends ViewRefNode implements Pageabl
}
get treeHierarchy(): string[] {
return this.branch.detached || this.branch.starred ? [this.branch.name] : this.branch.getName().split('/');
return this.branch.current || this.branch.detached || this.branch.starred
? [this.branch.name]
: this.branch.getName().split('/');
}
async getChildren(): Promise<ViewNode[]> {

Loading…
Откажи
Сачувај