Skip to content

Commit 53195a0

Browse files
Fixes worktree icon path
1 parent 46f1b16 commit 53195a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/git/utils/worktree-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function getWorktreeBranchIconPath(container: Container, branch: GitBranc
99
case 'ahead':
1010
case 'behind':
1111
case 'diverged':
12-
return getIconPathUris(container, `icon-repo${status}.svg`);
12+
return getIconPathUris(container, `icon-repo-${status}.svg`);
1313
case 'upToDate':
1414
return getIconPathUris(container, `icon-repo-synced.svg`);
1515
default:

0 commit comments

Comments
 (0)