Browse Source

Removes "all-new"

main
Eric Amodio 2 years ago
parent
commit
ab7a94aa3e
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      src/plus/webviews/graph/graphWebview.ts
  2. +3
    -3
      src/views/commitsView.ts

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

@ -1491,7 +1491,7 @@ export class GraphWebview extends WebviewBase {
this._statusBarItem.name = 'GitLens Commit Graph';
this._statusBarItem.command = Commands.ShowGraphPage;
this._statusBarItem.text = '$(gitlens-graph)';
this._statusBarItem.tooltip = new MarkdownString('Visualize commits on the all-new Commit Graph ✨');
this._statusBarItem.tooltip = new MarkdownString('Visualize commits on the Commit Graph ✨');
this._statusBarItem.accessibilityInformation = {
label: `Show the GitLens Commit Graph`,
};

+ 3
- 3
src/views/commitsView.ts View File

@ -138,9 +138,9 @@ export class CommitsViewNode extends RepositoriesSubscribeableNode
this.view,
this,
{ command: Commands.ShowGraphPage, title: 'Show Commit Graph' },
'Visualize commits on the all-new Commit Graph',
'✨ GitLens+',
'Visualize commits on the all-new Commit Graph ✨',
'Visualize commits on the Commit Graph',
'✨ GitLens+ feature',
'Visualize commits on the Commit Graph ✨',
new ThemeIcon('gitlens-graph'),
)
: undefined;

Loading…
Cancel
Save