Bläddra i källkod

Fixes #1923 updates titles when # of repos change

main
Eric Amodio 2 år sedan
förälder
incheckning
908e8b26ce
7 ändrade filer med 18 tillägg och 0 borttagningar
  1. +6
    -0
      CHANGELOG.md
  2. +2
    -0
      src/views/branchesView.ts
  3. +2
    -0
      src/views/contributorsView.ts
  4. +2
    -0
      src/views/remotesView.ts
  5. +2
    -0
      src/views/stashesView.ts
  6. +2
    -0
      src/views/tagsView.ts
  7. +2
    -0
      src/views/worktreesView.ts

+ 6
- 0
CHANGELOG.md Visa fil

@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
## Fixed
- Fixes [#1923](https://github.com/gitkraken/vscode-gitlens/issues/1923) - View titles fail to update properly when number of "opened" repos changes
## [12.0.5] - 2022-03-17
### Changed

+ 2
- 0
src/views/branchesView.ts Visa fil

@ -100,6 +100,8 @@ export class BranchesViewNode extends RepositoriesSubscribeableNode
return child.getChildren();
}
this.view.title = 'Branches';
return this.children;
}

+ 2
- 0
src/views/contributorsView.ts Visa fil

@ -107,6 +107,8 @@ export class ContributorsViewNode extends RepositoriesSubscribeableNode
return children;
}
this.view.title = 'Contributors';
return this.children;
}

+ 2
- 0
src/views/remotesView.ts Visa fil

@ -94,6 +94,8 @@ export class RemotesViewNode extends RepositoriesSubscribeableNode
return child.getChildren();
}
this.view.title = 'Remotes';
return this.children;
}

+ 2
- 0
src/views/stashesView.ts Visa fil

@ -82,6 +82,8 @@ export class StashesViewNode extends RepositoriesSubscribeableNode
return child.getChildren();
}
this.view.title = 'Stashes';
return this.children;
}

+ 2
- 0
src/views/tagsView.ts Visa fil

@ -82,6 +82,8 @@ export class TagsViewNode extends RepositoriesSubscribeableNode
return child.getChildren();
}
this.view.title = 'Tags';
return this.children;
}

+ 2
- 0
src/views/worktreesView.ts Visa fil

@ -88,6 +88,8 @@ export class WorktreesViewNode extends RepositoriesSubscribeableNode
return children;
}
this.view.title = 'Worktrees';
return this.children;
}

Laddar…
Avbryt
Spara