Browse Source

Removes reflog from insiders only

main
Eric Amodio 5 years ago
parent
commit
ad9937336e
2 changed files with 7 additions and 3 deletions
  1. +6
    -0
      CHANGELOG.md
  2. +1
    -3
      src/views/nodes/repositoryNode.ts

+ 6
- 0
CHANGELOG.md View File

@ -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]
### Changed
- Changes the experimental _Incoming Activity_ node in the _Repositories_ view to be available for everyone (not just if `"gitlens.insiders": true`)
## [10.0.0]- 2019-09-20
### Added

+ 1
- 3
src/views/nodes/repositoryNode.ts View File

@ -99,9 +99,7 @@ export class RepositoryNode extends SubscribeableViewNode {
new ContributorsNode(this.uri, this.view, this, this.repo)
);
if (Container.config.insiders) {
children.push(new ReflogNode(this.uri, this.view, this, this.repo));
}
children.push(new ReflogNode(this.uri, this.view, this, this.repo));
children.push(
new RemotesNode(this.uri, this.view, this, this.repo),

Loading…
Cancel
Save