Browse Source

Fixes current branch not showing up

main
Eric Amodio 2 years ago
committed by Keith Daulton
parent
commit
d94f031a7a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/plus/webviews/graph/graphWebview.ts

+ 1
- 1
src/plus/webviews/graph/graphWebview.ts View File

@ -1385,7 +1385,7 @@ export class GraphWebview extends WebviewBase {
branch = find(graph.branches.values(), b => b.current);
if (branch == null) continue;
includeOnlyRefs[key] = { ...value, id: branch.id, name: branch.name };
includeOnlyRefs[branch.id] = { ...value, id: branch.id, name: branch.name };
} else {
includeOnlyRefs[key] = value;
}

Loading…
Cancel
Save