Browse Source

Updates Graph tab title to Commit Graph

main
Eric Amodio 2 years ago
parent
commit
0a7c9471ad
1 changed files with 8 additions and 1 deletions
  1. +8
    -1
      src/plus/webviews/graph/graphWebview.ts

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

@ -48,7 +48,14 @@ export class GraphWebview extends WebviewWithConfigBase {
private previewBanner?: boolean;
constructor(container: Container) {
super(container, 'gitlens.graph', 'graph.html', 'images/gitlens-icon.png', 'Graph', Commands.ShowGraphPage);
super(
container,
'gitlens.graph',
'graph.html',
'images/gitlens-icon.png',
'Commit Graph',
Commands.ShowGraphPage,
);
this.defaultTitle = this.title;
this.disposables.push({ dispose: () => void this.repoDisposable?.dispose() });
}

||||||
x
 
000:0
Loading…
Cancel
Save