Skip to content

Commit a86075d

Browse files
Copilotalexr00
andcommitted
Fix type error in commitNode iconPath
Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com>
1 parent e48b945 commit a86075d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/view/treeNodes/commitNode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { LabelOnlyNode, TreeNode, TreeNodeParent } from './treeNode';
2020
export class CommitNode extends TreeNode implements vscode.TreeItem {
2121
public sha: string;
2222
public collapsibleState: vscode.TreeItemCollapsibleState;
23-
public iconPath: vscode.Uri | undefined;
23+
public iconPath: vscode.Uri | vscode.ThemeIcon | undefined;
2424
public contextValue?: string;
2525

2626
constructor(

0 commit comments

Comments
 (0)