From d94f031a7ab014ebca7ae7b17a39e2ae9ddb83a9 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Thu, 15 Dec 2022 15:05:14 -0500 Subject: [PATCH] Fixes current branch not showing up --- src/plus/webviews/graph/graphWebview.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plus/webviews/graph/graphWebview.ts b/src/plus/webviews/graph/graphWebview.ts index c4d2841..788bb3c 100644 --- a/src/plus/webviews/graph/graphWebview.ts +++ b/src/plus/webviews/graph/graphWebview.ts @@ -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; }