Browse Source

Reverts title change to branch create

main
Eric Amodio 4 years ago
parent
commit
2ea859f8b0
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      src/commands/git/branch.ts

+ 1
- 4
src/commands/git/branch.ts View File

@ -169,10 +169,7 @@ export class BranchGitCommand extends QuickCommand {
this.subcommand = state.subcommand;
context.title = getTitle(
state.subcommand === 'create' ? 'Branch from' : state.subcommand === 'delete' ? 'Branches' : this.title,
state.subcommand,
);
context.title = getTitle(state.subcommand === 'delete' ? 'Branches' : this.title, state.subcommand);
if (state.counter < 2 || state.repo == null || typeof state.repo === 'string') {
skippedStepTwo = false;

Loading…
Cancel
Save