We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7693b1f commit f23bae0Copy full SHA for f23bae0
1 file changed
src/view/treeNodes/fileChangeNode.ts
@@ -422,7 +422,7 @@ export class GitHubFileChangeNode extends TreeNode implements vscode.TreeItem {
422
public description: string;
423
public iconPath: vscode.ThemeIcon;
424
public fileChangeResourceUri: vscode.Uri;
425
-
+ public readonly tooltip: string;
426
public command: vscode.Command;
427
428
constructor(
@@ -437,6 +437,7 @@ export class GitHubFileChangeNode extends TreeNode implements vscode.TreeItem {
437
super();
438
const scheme = isLocal ? Schemes.GitPr : Schemes.GithubPr;
439
this.label = fileName;
440
+ this.tooltip = fileName;
441
this.iconPath = vscode.ThemeIcon.File;
442
this.fileChangeResourceUri = vscode.Uri.file(fileName).with({
443
scheme,
0 commit comments